summaryrefslogtreecommitdiff
path: root/src/lib/dcpomatic_log.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-01 22:58:49 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-01 22:58:49 +0100
commit981100bbff6883ff024b41d4b62e00b2ab8caec4 (patch)
tree0a230ff4c794aa9493a57441b47a9461b952e8ca /src/lib/dcpomatic_log.h
parent0c961c9231e7b0e074da409dce90913ceef5321f (diff)
Remove unused LOG_DEBUG_DECODE and re-use it to add some 3D shuffler logging.v2.15.46
Diffstat (limited to 'src/lib/dcpomatic_log.h')
-rw-r--r--src/lib/dcpomatic_log.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/dcpomatic_log.h b/src/lib/dcpomatic_log.h
index 2cec0c405..dbc850036 100644
--- a/src/lib/dcpomatic_log.h
+++ b/src/lib/dcpomatic_log.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2020 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -34,3 +34,5 @@ extern boost::shared_ptr<Log> dcpomatic_log;
#define LOG_TIMING(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_TIMING);
#define LOG_DEBUG_ENCODE(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_DEBUG_ENCODE);
#define LOG_DEBUG_PLAYER(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_DEBUG_PLAYER);
+#define LOG_DEBUG_THREED(...) dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_DEBUG_THREED);
+#define LOG_DEBUG_THREED_NC(...) dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_DEBUG_THREED);