diff options
author | Christian Pointner <equinox@anytun.org> | 2009-02-22 17:05:55 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-02-22 17:05:55 +0000 |
commit | 623570c7843b6747677e8ba76a603f22853c7b6d (patch) | |
tree | ce284b5b5c9a7f006a71c70f91a11bb75b644788 /src | |
parent | remove useless log priorities CRIT,EMERG,ALERT (diff) |
added log message at windows service stop
Diffstat (limited to 'src')
-rw-r--r-- | src/anytun.suo | bin | 66048 -> 66048 bytes | |||
-rw-r--r-- | src/win32/winService.cpp | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/src/anytun.suo b/src/anytun.suo Binary files differindex ac1e334..254ed37 100644 --- a/src/anytun.suo +++ b/src/anytun.suo diff --git a/src/win32/winService.cpp b/src/win32/winService.cpp index 5ce3d74..b6ea67f 100644 --- a/src/win32/winService.cpp +++ b/src/win32/winService.cpp @@ -132,6 +132,7 @@ void WinService::waitForStop() reportStatus(SERVICE_RUNNING, NO_ERROR);
WaitForSingleObject(stop_event_, INFINITE);
reportStatus(SERVICE_STOP_PENDING, NO_ERROR);
+ cLog.msg(Log::PRIO_NOTICE) << "WinService received stop signal, exitting";
}
void WinService::stop()
|