summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Init.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-01-04 18:10:25 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-01-04 18:10:25 +0000
commit34f1bc04579509b0577a5b887e77c1a53cb3c886 (patch)
tree9fe3d1153363c996b2e79355f78825c5a8681566 /py/modules/IcePy/Init.cpp
parentFixed bug 1541. (diff)
downloadice-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.cpp4
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,