Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
6daadc03
Commit
6daadc03
authored
Mar 23, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added class range_log
parent
a6475c9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
global.h
global.h
+14
-0
No files found.
global.h
View file @
6daadc03
...
...
@@ -35,6 +35,20 @@ public:
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
class
range_log
{
private
:
std
::
wstring
_msg
;
std
::
chrono
::
system_clock
::
time_point
_begin
;
public
:
range_log
(
const
std
::
wstring
&
msg
)
:
_msg
(
msg
)
{
JLOG
((
_msg
+
L" in"
).
c_str
());
_begin
=
std
::
chrono
::
system_clock
::
now
();
}
~
range_log
()
{
auto
diff
=
std
::
chrono
::
system_clock
::
now
()
-
_begin
;
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
JLOG
(
L"%s out, duration: %d(ms)
\n
"
,
_msg
.
c_str
(),
msec
.
count
());
}
};
#define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment