diff options
| author | 2015-05-15 20:54:48 -0700 | |
|---|---|---|
| committer | 2015-05-15 20:54:48 -0700 | |
| commit | ba2fe7f795ebc8da4acd247436afeefb900645d3 (patch) | |
| tree | be9a2cbcdd840f41be5353a33a98bff3ca31544e /src/common/logging/log.h | |
| parent | Merge pull request #780 from citra-emu/roadmap (diff) | |
| parent | Remove unused concurrent_ring_buffer.h (diff) | |
| download | yuzu-ba2fe7f795ebc8da4acd247436afeefb900645d3.tar.gz yuzu-ba2fe7f795ebc8da4acd247436afeefb900645d3.tar.xz yuzu-ba2fe7f795ebc8da4acd247436afeefb900645d3.zip | |
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.h | 6 |
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 { | |||
| 78 | Count ///< Total number of logging classes | 78 | Count ///< Total number of logging classes |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | /** | 81 | /// Logs a message to the global logger. |
| 82 | * Logs a message to the global logger. This proxy exists to avoid exposing the details of the | ||
| 83 | * Logger class, including the ConcurrentRingBuffer template, to all files that desire to log | ||
| 84 | * messages, reducing unecessary recompilations. | ||
| 85 | */ | ||
| 86 | void LogMessage(Class log_class, Level log_level, | 82 | void LogMessage(Class log_class, Level log_level, |
| 87 | const char* filename, unsigned int line_nr, const char* function, | 83 | const char* filename, unsigned int line_nr, const char* function, |
| 88 | #ifdef _MSC_VER | 84 | #ifdef _MSC_VER |