diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-11-04 10:45:58 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-11-04 10:45:58 -0800 |
commit | f842b68930c6fc772343509b04542e57d36db583 (patch) | |
tree | e59dd6ecd7c1d98f39c88670e499b0ae5bf001e9 /py/python/Ice.py | |
parent | bug 4349 - gcc warning in PythonUtil (diff) | |
download | ice-f842b68930c6fc772343509b04542e57d36db583.tar.bz2 ice-f842b68930c6fc772343509b04542e57d36db583.tar.xz ice-f842b68930c6fc772343509b04542e57d36db583.zip |
bug 2589:
- Fixing Python implementation of cloneWithPrefix
- Implementing cloneWithPrefix in Ruby & PHP
- Miscellaneous minor fixes
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 6371f57c815..e1d2d8ff442 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -618,6 +618,10 @@ class LoggerI(Logger): def error(self, message): return self._impl.error(message) + def cloneWithPrefix(self, prefix): + logger = self._impl.cloneWithPrefix(prefix) + return LoggerI(logger) + # # Properties wrapper. # |