summaryrefslogtreecommitdiff
path: root/src/logger_syslog.hh
blob: 1417edc9190726cbb554220bc3d140f190fdbe76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOGGER_SYSLOG_HH
#define LOGGER_SYSLOG_HH

#include <memory>
#include <string>

#include "logger.hh"

class LoggerSyslog : public Logger {
 public:
  static std::unique_ptr<Logger> create(std::string const& prgname);
};

#endif  // LOGGER_SYSLOG_HH