-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsync_stdout_sink.cpp
60 lines (49 loc) · 1.6 KB
/
sync_stdout_sink.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2023 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include "sync_stdout_sink.h"
#include <unistd.h>
#include <algorithm>
namespace tbox {
namespace log {
void SyncStdoutSink::onLogFrontEnd(const LogContent *content)
{
updateTimestampStr(content->timestamp.sec);
//! 开启色彩,显示日志等级
if (enable_color_)
printf("\033[%sm", LOG_LEVEL_COLOR_CODE[content->level]);
//! 打印等级、时间戳、线程号、模块名
printf("%c %s.%06u %ld %s ", LOG_LEVEL_LEVEL_CODE[content->level],
timestamp_str_, content->timestamp.usec,
content->thread_id, content->module_id);
if (content->func_name != nullptr)
printf("%s() ", content->func_name);
if (content->text_len > 0)
printf("%.*s ", content->text_len, content->text_ptr);
if (content->text_trunc)
printf("(TRUNCATED) ");
if (content->file_name != nullptr)
printf("-- %s:%d", content->file_name, content->line);
if (enable_color_)
puts("\033[0m"); //! 恢复色彩
else
putchar('\n');
}
}
}