diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-04 18:10:25 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-04 18:10:25 +0000 |
commit | 34f1bc04579509b0577a5b887e77c1a53cb3c886 (patch) | |
tree | 9fe3d1153363c996b2e79355f78825c5a8681566 /py/modules/IcePy/Init.cpp | |
parent | Fixed bug 1541. (diff) | |
download | ice-34f1bc04579509b0577a5b887e77c1a53cb3c886.tar.bz2 ice-34f1bc04579509b0577a5b887e77c1a53cb3c886.tar.xz ice-34f1bc04579509b0577a5b887e77c1a53cb3c886.zip |
Added process logger
Diffstat (limited to 'py/modules/IcePy/Init.cpp')
-rw-r--r-- | py/modules/IcePy/Init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/modules/IcePy/Init.cpp b/py/modules/IcePy/Init.cpp index d70b9d85f02..41da43766ce 100644 --- a/py/modules/IcePy/Init.cpp +++ b/py/modules/IcePy/Init.cpp @@ -37,6 +37,10 @@ static PyMethodDef methods[] = PyDoc_STR(STRCAST("generateUUID() -> string")) }, { STRCAST("createProperties"), (PyCFunction)IcePy_createProperties, METH_VARARGS, PyDoc_STR(STRCAST("createProperties([args]) -> Ice.Properties")) }, + { STRCAST("getProcessLogger"), (PyCFunction)IcePy_getProcessLogger, METH_NOARGS, + PyDoc_STR(STRCAST("getProcessLogger() -> Ice.Logger")) }, + { STRCAST("setProcessLogger"), (PyCFunction)IcePy_setProcessLogger, METH_VARARGS, + PyDoc_STR(STRCAST("setProcessLogger(logger) -> None")) }, { STRCAST("defineEnum"), (PyCFunction)IcePy_defineEnum, METH_VARARGS, PyDoc_STR(STRCAST("internal function")) }, { STRCAST("defineStruct"), (PyCFunction)IcePy_defineStruct, METH_VARARGS, |