Commit 6e2dadc6 authored by Mark Niebur's avatar Mark Niebur

Add method to filesinks to return filename

parent 00e89a23
......@@ -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
{
......
......@@ -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
{
......
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment