Design Pattern Examples
Overview of object-oriented design patterns
Bridge_LoggerHelpers.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __BRIDGE_LOGGERHELPERS_H__
8#define __BRIDGE_LOGGERHELPERS_H__
9
10#include <string>
11
13{
14
18 namespace LoggerHelpers
19 {
20
27 std::string FormatLogLine(const std::string& logLevel, const std::string& msg);
28
29 } // end namespace
30
31} // end namespace
32
33#endif // __BRIDGE_LOGGERHELPERS_H__
34
std::string FormatLogLine(const std::string &logLevel, const std::string &msg)
Format a line for logging, including time stamp.
The namespace containing all Design Pattern Examples implemented in C++.