herald  2.0.0
devnull_logging_sink.h
1 // Copyright 2020-2021 Herald Project Contributors
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #ifndef HERALD_DEVNULL_LOGGING_SINK
6 #define HERALD_DEVNULL_LOGGING_SINK
7 
8 #include "herald/data/sensor_logger.h"
9 
10 namespace herald::data {
11 
15 
16  void log(const std::string& subsystem, const std::string& category, SensorLoggerLevel level, std::string message);
17 };
18 
19 }
20 
21 #endif
Definition: devnull_logging_sink.h:12