Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
anbox
提交
6887a4a0
A
anbox
项目概览
openeuler
/
anbox
通知
24
Star
1
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
anbox
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6887a4a0
编写于
1月 26, 2017
作者:
S
Simon Fels
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Filter log messages by severity
上级
c887e51d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
15 deletion
+16
-15
src/anbox/logger.cpp
src/anbox/logger.cpp
+13
-15
src/anbox/logger.h
src/anbox/logger.h
+3
-0
未找到文件。
src/anbox/logger.cpp
浏览文件 @
6887a4a0
...
...
@@ -30,8 +30,7 @@
namespace
{
namespace
attrs
{
BOOST_LOG_ATTRIBUTE_KEYWORD
(
Severity
,
"anbox::Severity"
,
anbox
::
Logger
::
Severity
)
BOOST_LOG_ATTRIBUTE_KEYWORD
(
Severity
,
"anbox::Severity"
,
anbox
::
Logger
::
Severity
)
BOOST_LOG_ATTRIBUTE_KEYWORD
(
Location
,
"Location"
,
anbox
::
Logger
::
Location
)
BOOST_LOG_ATTRIBUTE_KEYWORD
(
Timestamp
,
"Timestamp"
,
boost
::
posix_time
::
ptime
)
}
...
...
@@ -39,8 +38,7 @@ BOOST_LOG_ATTRIBUTE_KEYWORD(Timestamp, "Timestamp", boost::posix_time::ptime)
struct
BoostLogLogger
:
public
anbox
::
Logger
{
BoostLogLogger
()
:
initialized_
(
false
)
{}
void
Init
(
const
anbox
::
Logger
::
Severity
&
severity
=
anbox
::
Logger
::
Severity
::
kWarning
)
override
{
void
Init
(
const
anbox
::
Logger
::
Severity
&
severity
=
anbox
::
Logger
::
Severity
::
kWarning
)
override
{
if
(
initialized_
)
return
;
boost
::
log
::
formatter
formatter
=
...
...
@@ -58,25 +56,24 @@ struct BoostLogLogger : public anbox::Logger {
auto
logger
=
boost
::
log
::
add_console_log
(
std
::
cout
);
logger
->
set_formatter
(
formatter
);
// FIXME need to enable this once we found how we wrap this
// properly into our service architecture. For now left as
// it is.
boost
::
ignore_unused_variable_warning
(
severity
);
// logger->set_filter(attrs::Severity < severity);
severity_
=
severity
;
initialized_
=
true
;
}
void
Log
(
Severity
severity
,
const
std
::
string
&
message
,
const
boost
::
optional
<
Location
>&
loc
)
{
void
Log
(
Severity
severity
,
const
std
::
string
&
message
,
const
boost
::
optional
<
Location
>&
loc
)
override
{
if
(
!
initialized_
)
Init
();
// FIXME somehow set_filter doesn't work with the trivial logger. If
// we set a filter based on the severity attribute open_record will
// not return a new record. Because of that we do a poor man filtering
// here until we have a proper way to do this via boost.
if
(
severity
<
severity_
)
return
;
if
(
auto
rec
=
boost
::
log
::
trivial
::
logger
::
get
().
open_record
())
{
boost
::
log
::
record_ostream
out
{
rec
};
out
<<
boost
::
log
::
add_value
(
attrs
::
Severity
,
severity
)
<<
boost
::
log
::
add_value
(
attrs
::
Timestamp
,
boost
::
posix_time
::
microsec_clock
::
universal_time
())
<<
boost
::
log
::
add_value
(
attrs
::
Timestamp
,
boost
::
posix_time
::
microsec_clock
::
universal_time
())
<<
message
;
if
(
loc
)
{
...
...
@@ -91,6 +88,7 @@ struct BoostLogLogger : public anbox::Logger {
}
private:
Severity
severity_
;
bool
initialized_
;
};
...
...
src/anbox/logger.h
浏览文件 @
6887a4a0
...
...
@@ -49,6 +49,9 @@ class Logger : public DoNotCopyOrMove {
virtual
void
Init
(
const
Severity
&
severity
=
Severity
::
kWarning
)
=
0
;
void
SetSeverity
(
const
std
::
string
&
severity
);
virtual
void
SetSeverity
(
const
Severity
&
severity
)
=
0
;
virtual
void
Log
(
Severity
severity
,
const
std
::
string
&
message
,
const
boost
::
optional
<
Location
>&
location
)
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录