22 lines
370 B
C
22 lines
370 B
C
|
#pragma once
|
||
|
|
||
|
#include "./LoggerInterface.h"
|
||
|
#include <memory>
|
||
|
|
||
|
namespace reanimated
|
||
|
{
|
||
|
|
||
|
class Logger {
|
||
|
public:
|
||
|
template<typename T>
|
||
|
static void log(T value) {
|
||
|
if (instance == nullptr) {
|
||
|
throw std::runtime_error("no logger specified");
|
||
|
}
|
||
|
instance->log(value);
|
||
|
};
|
||
|
private:
|
||
|
static std::unique_ptr<LoggerInterface> instance;
|
||
|
};
|
||
|
|
||
|
}
|