Skip to content

Commit

Permalink
Added comment on top of dmlog_appender and make constructor explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Vachon committed Mar 17, 2020
1 parent ad07254 commit 4386862
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/fc/log/dmlog_appender.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@

namespace fc {

/**
* Specialized appender for deep mind tracer that sends log messages
* through `stdout` correctly formatted for latter consumption by
* deep mind postprocessing tools from dfuse.
*/
class dmlog_appender : public appender
{
public:
dmlog_appender( const variant& args );
explicit dmlog_appender( const variant& args );
dmlog_appender();

virtual ~dmlog_appender();
Expand Down

0 comments on commit 4386862

Please sign in to comment.