21788d003a
Summary: Dressipi CRUD queries are dummy implemented; Fixes T99 and T131 Test Plan: manual Reviewers: sale Subscribers: buda, sale Maniphest Tasks: T131, T99 Differential Revision: https://memgraph.phacility.com/D9
18 lines
250 B
C++
18 lines
250 B
C++
#pragma once
|
|
|
|
#include "logging/default.hpp"
|
|
|
|
class Loggable
|
|
{
|
|
public:
|
|
Loggable(std::string &&name)
|
|
: logger(logging::log->logger(std::forward<std::string>(name)))
|
|
{
|
|
}
|
|
|
|
virtual ~Loggable() {}
|
|
|
|
protected:
|
|
Logger logger;
|
|
};
|