Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
8b1bccdd
Commit
8b1bccdd
authored
3 years ago
by
cgm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
api增加log日志文件参数设置
parent
10c46086
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
15 行增加
和
0 行删除
+15
-0
api/include/mk_common.h
+7
-0
api/source/mk_common.cpp
+8
-0
没有找到文件。
api/include/mk_common.h
查看文件 @
8b1bccdd
...
@@ -107,6 +107,13 @@ API_EXPORT void API_CALL mk_env_init1(int thread_num,
...
@@ -107,6 +107,13 @@ API_EXPORT void API_CALL mk_env_init1(int thread_num,
const
char
*
ssl_pwd
);
const
char
*
ssl_pwd
);
/**
/**
* 设置日志文件
* @param file_max_size 单个切片文件大小(MB)
* @param file_max_count 切片文件个数
*/
API_EXPORT
void
API_CALL
mk_set_log
(
int
file_max_size
,
int
file_max_count
);
/**
* 设置配置项
* 设置配置项
* @param key 配置项名
* @param key 配置项名
* @param val 配置项值
* @param val 配置项值
...
...
This diff is collapsed.
Click to expand it.
api/source/mk_common.cpp
查看文件 @
8b1bccdd
...
@@ -121,6 +121,14 @@ API_EXPORT void API_CALL mk_env_init1(int thread_num,
...
@@ -121,6 +121,14 @@ API_EXPORT void API_CALL mk_env_init1(int thread_num,
});
});
}
}
API_EXPORT
void
API_CALL
mk_set_log
(
int
file_max_size
,
int
file_max_count
)
{
auto
channel
=
dynamic_pointer_cast
<
FileChannel
>
(
Logger
::
Instance
().
get
(
"FileChannel"
));
if
(
channel
)
{
channel
->
setFileMaxSize
(
file_max_size
);
channel
->
setFileMaxCount
(
file_max_count
);
}
}
API_EXPORT
void
API_CALL
mk_set_option
(
const
char
*
key
,
const
char
*
val
)
{
API_EXPORT
void
API_CALL
mk_set_option
(
const
char
*
key
,
const
char
*
val
)
{
assert
(
key
&&
val
);
assert
(
key
&&
val
);
if
(
mINI
::
Instance
().
find
(
key
)
==
mINI
::
Instance
().
end
())
{
if
(
mINI
::
Instance
().
find
(
key
)
==
mINI
::
Instance
().
end
())
{
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论