Mercurial > hg > orthanc
changeset 4365:3150306fb4ad
fix missing log category in _OrthancPluginService_LogInfo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 09 Dec 2020 16:46:10 +0100 |
parents | d527a081f92d |
children | 6a39ca7083b9 |
files | OrthancServer/Plugins/Engine/PluginsManager.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Plugins/Engine/PluginsManager.cpp Wed Dec 09 16:17:46 2020 +0100 +++ b/OrthancServer/Plugins/Engine/PluginsManager.cpp Wed Dec 09 16:46:10 2020 +0100 @@ -169,7 +169,7 @@ return OrthancPluginErrorCode_Success; case _OrthancPluginService_LogInfo: - LOG(INFO) << reinterpret_cast<const char*>(params); + CLOG(INFO, PLUGINS) << reinterpret_cast<const char*>(params); return OrthancPluginErrorCode_Success; default: