blob: 5264a5e7f6c2dfe65884ef771dbfc0b914ea13a4 [file] [log] [blame]
Artem Senichevefd5d742018-10-24 16:14:04 +03001/**
2 * @brief Logger configuration.
3 *
4 * This file is part of HostLogger project.
5 *
6 * Copyright (c) 2018 YADRO
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20
21#pragma once
22
23/** @struct Config
24 * @brief Represent the configuration of the logger.
25 */
26struct Config
27{
28 /** @brief Path to write log files. */
29 const char* path;
30 /** @brief Storage limit (message count). */
31 int storageSizeLimit;
32 /** @brief Storage limit (max time). */
33 int storageTimeLimit;
34 /** @brief Flush policy: save logs every flushPeriod hours. */
35 int flushPeriod;
36 /** @brief Rotation limit (max files to store). */
37 int rotationLimit;
38};
39
40/** @brief Global logger configuration instance. */
41extern Config loggerConfig;