aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-15 20:54:48 -0700
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-15 20:54:48 -0700
commitba2fe7f795ebc8da4acd247436afeefb900645d3 (patch)
treebe9a2cbcdd840f41be5353a33a98bff3ca31544e /src/common/logging/log.h
parent742fd191a955d9971b527b25f366820ff5ddbf7b (diff)
parent7dbc27ff57d24a1c4e04e3f8cc35773ff9288516 (diff)
Merge pull request #758 from yuriks/sync-logging
Common: Remove async logging
Diffstat (limited to 'src/common/logging/log.h')
-rw-r--r--src/common/logging/log.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 123641cb..fd87ddbe 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -78,11 +78,7 @@ enum class Class : ClassType {
Count ///< Total number of logging classes
};
-/**
- * Logs a message to the global logger. This proxy exists to avoid exposing the details of the
- * Logger class, including the ConcurrentRingBuffer template, to all files that desire to log
- * messages, reducing unecessary recompilations.
- */
+/// Logs a message to the global logger.
void LogMessage(Class log_class, Level log_level,
const char* filename, unsigned int line_nr, const char* function,
#ifdef _MSC_VER