comparison OrthancFramework/Sources/Logging.h @ 4271:1bd14c900699

LogCategory_PLUGINS
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Nov 2020 07:15:44 +0100
parents 251a8b07fa37
children 1661544ea94d
comparison
equal deleted inserted replaced
4270:251a8b07fa37 4271:1bd14c900699
59 * that don't fall in a specific category). 59 * that don't fall in a specific category).
60 **/ 60 **/
61 enum LogCategory 61 enum LogCategory
62 { 62 {
63 LogCategory_GENERIC = (1 << 0), 63 LogCategory_GENERIC = (1 << 0),
64 LogCategory_SQLITE = (1 << 1), 64 LogCategory_PLUGINS = (1 << 1),
65 LogCategory_DICOM = (1 << 2) 65 LogCategory_SQLITE = (1 << 2),
66 LogCategory_DICOM = (1 << 3)
66 }; 67 };
67 68
68 ORTHANC_PUBLIC const char* EnumerationToString(LogLevel level); 69 ORTHANC_PUBLIC const char* EnumerationToString(LogLevel level);
69 70
70 ORTHANC_PUBLIC LogLevel StringToLogLevel(const char* level); 71 ORTHANC_PUBLIC LogLevel StringToLogLevel(const char* level);