diff options
author | Likun Zhang <zlkzhy@gmail.com> | 2010-06-02 11:57:26 +0200 |
---|---|---|
committer | Likun Zhang <zlkzhy@gmail.com> | 2010-06-02 11:57:26 +0200 |
commit | e93a3fb1812be9333e11d9177e3cf98975fcb715 (patch) | |
tree | 66b852975a73dae1ccd2bd219f6012cfd08f467b | |
parent | Include external ASIO code in the tarball. (diff) | |
download | kea-e93a3fb1812be9333e11d9177e3cf98975fcb715.tar.xz kea-e93a3fb1812be9333e11d9177e3cf98975fcb715.zip |
Fix the code error in log message print(function log_msg is used without definition), trivial fix, so skip review.
git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2047 e5f2f494-b856-4b98-b285-d166d9295462
-rw-r--r-- | src/bin/xfrout/xfrout.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/xfrout/xfrout.py.in b/src/bin/xfrout/xfrout.py.in index dc5f43d4ba..8dde7fbd6c 100644 --- a/src/bin/xfrout/xfrout.py.in +++ b/src/bin/xfrout/xfrout.py.in @@ -391,7 +391,7 @@ class XfroutServer: def command_handler(self, cmd, args): if cmd == "shutdown": if verbose_mode: - log_msg("Received shutdown command") + print("[b10-xfrout] Received shutdown command") self.shutdown() answer = create_answer(0) else: |