blob: 8a569c64e0001cd0eb80725e98f16658acf26a20 [file] [log] [blame]
Tomáš Pecka5123e002020-06-05 15:29:21 +02001/*
2 * Copyright (C) 2016-2019 CESNET, https://photonics.cesnet.cz/
3 *
4 * Written by Jan Kundrát <jan.kundrat@cesnet.cz>
5 *
6*/
7
8#pragma once
9
10#include <memory>
11
12namespace spdlog {
13namespace sinks {
14class sink;
15}
16}
17
18/** @file
19 * @short Implementation of initialization of logging
20*/
21
Tomáš Peckabd828862020-06-15 15:53:35 +020022namespace velia {
Tomáš Pecka5123e002020-06-05 15:29:21 +020023namespace utils {
24void initLogs(std::shared_ptr<spdlog::sinks::sink> sink);
25}
26}