Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
oceanbase
miniob
提交
aaa8f646
M
miniob
项目概览
oceanbase
/
miniob
1 年多 前同步成功
通知
74
Star
1521
Fork
537
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
分析
仓库
DevOps
项目成员
Pages
M
miniob
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Pages
分析
分析
仓库分析
DevOps
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
提交
未验证
提交
aaa8f646
编写于
1月 09, 2023
作者:
L
Longda
提交者:
GitHub
1月 09, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Closes #131, replace sprintf with snprintf (#134)
上级
83b1d4e3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
3 deletion
+5
-3
deps/common/lang/string.cpp
deps/common/lang/string.cpp
+1
-1
deps/common/log/log.h
deps/common/log/log.h
+4
-2
未找到文件。
deps/common/lang/string.cpp
浏览文件 @
aaa8f646
...
...
@@ -194,7 +194,7 @@ char *bin_to_hex(const char *s, const int len, char *hex_buff)
int
new_len
=
0
;
unsigned
char
*
end
=
(
unsigned
char
*
)
s
+
len
;
for
(
unsigned
char
*
p
=
(
unsigned
char
*
)
s
;
p
<
end
;
p
++
)
{
new_len
+=
s
printf
(
hex_buff
+
new_len
,
"%02x"
,
*
p
);
new_len
+=
s
nprintf
(
hex_buff
+
new_len
,
2
,
"%02x"
,
*
p
);
}
hex_buff
[
new_len
]
=
'\0'
;
...
...
deps/common/log/log.h
浏览文件 @
aaa8f646
...
...
@@ -157,14 +157,16 @@ extern Log *g_log;
#define __FILE_NAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
#endif
#define LOG_HEAD_SIZE 64
#define LOG_HEAD(prefix, level) \
if (common::g_log) { \
time_t now_time; \
time(&now_time); \
struct tm *p = localtime(&now_time); \
char sz_head[
64] = {0};
\
char sz_head[
LOG_HEAD_SIZE] = {0};
\
if (p) { \
s
printf(sz_head,
\
s
nprintf(sz_head, LOG_HEAD_SIZE,
\
"%d-%d-%d %d:%d:%u pid:%u tid:%llx ", \
p->tm_year + 1900, \
p->tm_mon + 1, \
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录