Merge pull request #978 from markniebur/file-sink-filename-method

Add method to filesinks to return filename
This commit is contained in:
Gabi Melman 2019-01-23 23:07:57 +02:00 committed by GitHub
commit 3466c9c8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View File

@ -30,6 +30,11 @@ public:
file_helper_.open(filename, truncate);
}
const filename_t &filename() const
{
return file_helper_.filename();
}
protected:
void sink_it_(const details::log_msg &msg) override
{

View File

@ -63,6 +63,11 @@ public:
rotation_tp_ = next_rotation_tp_();
}
const filename_t &filename() const
{
return file_helper_.filename();
}
protected:
void sink_it_(const details::log_msg &msg) override
{

View File

@ -58,6 +58,11 @@ public:
return fmt::to_string(w);
}
const filename_t &filename() const
{
return file_helper_.filename();
}
protected:
void sink_it_(const details::log_msg &msg) override
{