memgraph/include/logging/streams/stderr.hpp

10 lines
133 B
C++
Raw Normal View History

2016-08-14 19:43:34 +08:00
#pragma once
#include "logging/log.hpp"
class Stderr : public Log::Stream
{
public:
void emit(const Log::Record&) override;
};