summaryrefslogtreecommitdiffstats
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-12 07:19:44 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-12 07:31:04 +0200
commitb88c91dd3d03f1a452cdd48f0db4e010cb150753 (patch)
tree17ddf674e020be69d03cc1c3c49c3e041377603b /src/common/logging/log.h
parentMerge pull request #748 from Subv/tls_max (diff)
downloadyuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.gz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.bz2
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.lz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.xz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.zst
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.zip
Diffstat (limited to '')
-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 123641cb4..fd87ddbe6 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