diff options
author | chai <chaifix@163.com> | 2018-08-07 11:51:37 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-07 11:51:37 +0800 |
commit | a46931ada5343e8f5b863719c733f5bfc91c663f (patch) | |
tree | 243e77ea0ca1aa5a4b7a235be62efde22914b96e /src/libjin/Utils/Log.h | |
parent | e4eeedbd6faaef380b58236745856b50cebf4461 (diff) |
*update
Diffstat (limited to 'src/libjin/Utils/Log.h')
-rw-r--r-- | src/libjin/Utils/Log.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libjin/Utils/Log.h b/src/libjin/Utils/Log.h index b047402..50ec3c8 100644 --- a/src/libjin/Utils/Log.h +++ b/src/libjin/Utils/Log.h @@ -65,19 +65,19 @@ void Loghelper::log(Level _level, const char* _fmt, ...) switch (_level) { case LV_ERROR: - levelStr = "Error: "; + levelStr = "[Jin Error]:"; break; case LV_WARN: - levelStr = "Warn: "; + levelStr = "[Jin Warn]:"; break; case LV_INFO: - levelStr = "Info: "; + levelStr = "[Jin Info]:"; break; case LV_DEBUG: - levelStr = "Debug: "; + levelStr = "[Jin Debug]:"; break; default: - levelStr = "Unknown: "; + levelStr = "[Jin Unknown]:"; break; } char buffer[FORMAT_MSG_BUFFER_SIZE + 1] = { 0 }; |