diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-25 13:58:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-25 14:03:20 +0100 |
| commit | ee57b4a0e7432deac347c061a88baff4ec51c083 (patch) | |
| tree | d46feb1d312b7e22e1ab594b468a73b3e517728b /src/lib/dcpomatic_log.h | |
| parent | 9276310e6c9be6148ea8b465b44af55413dc0dc0 (diff) | |
Add debug log type for encode servers.
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 d5d230414..fdfe8a2c3 100644 --- a/src/lib/dcpomatic_log.h +++ b/src/lib/dcpomatic_log.h @@ -42,4 +42,6 @@ extern boost::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_DEBUG_ENCODE_SERVERS(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_DEBUG_ENCODE_SERVERS); +#define LOG_DEBUG_ENCODE_SERVERS_NC(...) dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_DEBUG_ENCODE_SERVERS); |
