Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
849b5cb8
Commit
849b5cb8
authored
May 08, 2015
by
Denis Ivaykin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flush
parent
06e0b038
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
0 deletions
+21
-0
file_helper.h
include/spdlog/details/file_helper.h
+4
-0
base_sink.h
include/spdlog/sinks/base_sink.h
+1
-0
file_sinks.h
include/spdlog/sinks/file_sinks.h
+8
-0
null_sink.h
include/spdlog/sinks/null_sink.h
+3
-0
ostream_sink.h
include/spdlog/sinks/ostream_sink.h
+5
-0
No files found.
include/spdlog/details/file_helper.h
View file @
849b5cb8
...
@@ -87,6 +87,10 @@ public:
...
@@ -87,6 +87,10 @@ public:
}
}
void
flush
()
{
std
::
fflush
(
_fd
);
}
void
close
()
void
close
()
{
{
if
(
_fd
)
if
(
_fd
)
...
...
include/spdlog/sinks/base_sink.h
View file @
849b5cb8
...
@@ -58,6 +58,7 @@ public:
...
@@ -58,6 +58,7 @@ public:
_sink_it
(
msg
);
_sink_it
(
msg
);
}
}
virtual
void
flush
()
=
0
;
protected
:
protected
:
virtual
void
_sink_it
(
const
details
::
log_msg
&
msg
)
=
0
;
virtual
void
_sink_it
(
const
details
::
log_msg
&
msg
)
=
0
;
...
...
include/spdlog/sinks/file_sinks.h
View file @
849b5cb8
...
@@ -80,6 +80,10 @@ public:
...
@@ -80,6 +80,10 @@ public:
_file_helper
.
open
(
calc_filename
(
_base_filename
,
0
,
_extension
));
_file_helper
.
open
(
calc_filename
(
_base_filename
,
0
,
_extension
));
}
}
virtual
void
flush
()
override
{
_file_helper
.
flush
();
}
protected
:
protected
:
void
_sink_it
(
const
details
::
log_msg
&
msg
)
override
void
_sink_it
(
const
details
::
log_msg
&
msg
)
override
{
{
...
@@ -167,6 +171,10 @@ public:
...
@@ -167,6 +171,10 @@ public:
_file_helper
.
open
(
calc_filename
(
_base_filename
,
_extension
));
_file_helper
.
open
(
calc_filename
(
_base_filename
,
_extension
));
}
}
virtual
void
flush
()
override
{
_file_helper
.
flush
();
}
protected
:
protected
:
void
_sink_it
(
const
details
::
log_msg
&
msg
)
override
void
_sink_it
(
const
details
::
log_msg
&
msg
)
override
{
{
...
...
include/spdlog/sinks/null_sink.h
View file @
849b5cb8
...
@@ -40,6 +40,9 @@ protected:
...
@@ -40,6 +40,9 @@ protected:
void
_sink_it
(
const
details
::
log_msg
&
)
override
void
_sink_it
(
const
details
::
log_msg
&
)
override
{}
{}
void
flush
()
override
{}
};
};
typedef
null_sink
<
details
::
null_mutex
>
null_sink_st
;
typedef
null_sink
<
details
::
null_mutex
>
null_sink_st
;
typedef
null_sink
<
std
::
mutex
>
null_sink_mt
;
typedef
null_sink
<
std
::
mutex
>
null_sink_mt
;
...
...
include/spdlog/sinks/ostream_sink.h
View file @
849b5cb8
...
@@ -51,6 +51,11 @@ protected:
...
@@ -51,6 +51,11 @@ protected:
if
(
_force_flush
)
if
(
_force_flush
)
_ostream
.
flush
();
_ostream
.
flush
();
}
}
virtual
void
flush
()
override
{
_ostream
.
flush
();
}
std
::
ostream
&
_ostream
;
std
::
ostream
&
_ostream
;
bool
_force_flush
;
bool
_force_flush
;
};
};
...
...
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