Mercurial > hg > orthanc
annotate OrthancServer/Resources/Samples/CppHelpers/Logging/OrthancPluginLogger.cpp @ 5522:dd430a1b21fe pg-transactions
simplifying StatelessDatabaseOperations
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 30 Jan 2024 09:41:06 +0100 |
parents | 48b8dae6dc77 |
children | f7adfb22e20e |
rev | line source |
---|---|
4829
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
1 /** |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
2 * Orthanc - A Lightweight, RESTful DICOM Store |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4829
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
7 * |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 * This program is free software: you can redistribute it and/or |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 * modify it under the terms of the GNU General Public License as |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 * published by the Free Software Foundation, either version 3 of the |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
11 * License, or (at your option) any later version. |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
12 * |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, but |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
14 * WITHOUT ANY WARRANTY; without even the implied warranty of |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
16 * General Public License for more details. |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 * |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
20 **/ |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
21 |
c847b0dfd255
added missing copyright headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
22 |
3460 | 23 #include "OrthancPluginLogger.h" |
24 | |
25 namespace OrthancHelpers | |
26 { | |
27 | |
28 OrthancPluginLogger::OrthancPluginLogger(OrthancPluginContext *context) | |
29 : pluginContext_(context), | |
30 hasAlreadyLoggedTraceWarning_(false) | |
31 { | |
32 } | |
33 | |
34 void OrthancPluginLogger::Trace(const char *message) | |
35 { | |
36 Trace(std::string(message)); | |
37 } | |
38 | |
39 void OrthancPluginLogger::Trace(const std::string &message) | |
40 { | |
41 if (!hasAlreadyLoggedTraceWarning_) | |
42 { | |
43 Warning("Trying to log 'TRACE' level information in a plugin is not possible. These logs won't appear."); | |
44 hasAlreadyLoggedTraceWarning_ = true; | |
45 } | |
46 } | |
47 | |
48 void OrthancPluginLogger::Info(const char *message) | |
49 { | |
50 Info(std::string(message)); | |
51 } | |
52 | |
53 void OrthancPluginLogger::Info(const std::string &message) | |
54 { | |
55 OrthancPluginLogInfo(pluginContext_, (GetContext() + " " + message).c_str()); | |
56 } | |
57 | |
58 void OrthancPluginLogger::Warning(const char *message) | |
59 { | |
60 Warning(std::string(message)); | |
61 } | |
62 | |
63 void OrthancPluginLogger::Warning(const std::string &message) | |
64 { | |
65 OrthancPluginLogWarning(pluginContext_, (GetContext() + " " + message).c_str()); | |
66 } | |
67 | |
68 void OrthancPluginLogger::Error(const char *message) | |
69 { | |
70 Error(std::string(message)); | |
71 } | |
72 | |
73 void OrthancPluginLogger::Error(const std::string &message) | |
74 { | |
75 OrthancPluginLogError(pluginContext_, (GetContext() + " " + message).c_str()); | |
76 } | |
77 } // namespace OrthancHelpers |