Index: base/logging.h |
diff --git a/base/logging.h b/base/logging.h |
index 55c9ebfafbf3db7f44419145bcb486073fff6e88..891f6756be9c3faa07aa368202b77f05efe19288 100644 |
--- a/base/logging.h |
+++ b/base/logging.h |
@@ -447,11 +447,13 @@ const LogSeverity LOG_0 = LOG_ERROR; |
#define PLOG_IF(severity, condition) \ |
LAZY_STREAM(PLOG_STREAM(severity), LOG_IS_ON(severity) && (condition)) |
+#if !defined(LOGGING_IS_OFFICIAL_BUILD) |
#if defined(OFFICIAL_BUILD) && defined(NDEBUG) |
#define LOGGING_IS_OFFICIAL_BUILD 1 |
#else |
#define LOGGING_IS_OFFICIAL_BUILD 0 |
#endif |
+#endif |
// The actual stream used isn't important. |
#define EAT_STREAM_PARAMETERS \ |