diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-14 01:42:21 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-23 19:51:28 +0200 |
| commit | 4181c68e98c9623ea1d5a747678d825662205920 (patch) | |
| tree | 56e1a49d4b97c03d01150a002a0920f4ff904496 /src/lib/dcpomatic_log.h | |
| parent | 6cdae64ba9ce3a9f02f3a7437cfff078d942cba1 (diff) | |
Add log entry for the HTTP server.
Diffstat (limited to 'src/lib/dcpomatic_log.h')
| -rw-r--r-- | src/lib/dcpomatic_log.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/dcpomatic_log.h b/src/lib/dcpomatic_log.h index 6a1c3a6ec..2372c8d01 100644 --- a/src/lib/dcpomatic_log.h +++ b/src/lib/dcpomatic_log.h @@ -44,4 +44,6 @@ extern std::shared_ptr<Log> dcpomatic_log; #define LOG_DEBUG_PLAYER_NC(...) dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_DEBUG_PLAYER); #define LOG_DEBUG_AUDIO_ANALYSIS(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_DEBUG_AUDIO_ANALYSIS); #define LOG_DEBUG_AUDIO_ANALYSIS_NC(...) dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_DEBUG_AUDIO_ANALYSIS); +#define LOG_HTTP(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_HTTP); +#define LOG_HTTP_NC(...) dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_HTTP); |
