userver: userver/logging/format.hpp Source File
Loading...
Searching...
No Matches
format.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/logging/format.hpp
4/// @brief Log formats
5
6#include <string_view>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace logging {
11
12/// Log formats
13enum class Format {
14 kTskv,
15 kLtsv,
16 kRaw,
17 kStruct,
18 kJson,
19 kJsonYaDeploy,
20};
21
22/// Parse Format enum from string
23Format FormatFromString(std::string_view format_str);
24
25} // namespace logging
26
27USERVER_NAMESPACE_END