1 /*MT*
2 
3     MediaTomb - http://www.mediatomb.cc/
4 
5     logger.h - this file is part of MediaTomb.
6 
7     Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
8                        Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
9 
10     Copyright (C) 2006-2010 Gena Batyan <bgeradz@mediatomb.cc>,
11                             Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
12                             Leonhard Wimmer <leo@mediatomb.cc>
13 
14     MediaTomb is free software; you can redistribute it and/or modify
15     it under the terms of the GNU General Public License version 2
16     as published by the Free Software Foundation.
17 
18     MediaTomb is distributed in the hope that it will be useful,
19     but WITHOUT ANY WARRANTY; without even the implied warranty of
20     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21     GNU General Public License for more details.
22 
23     You should have received a copy of the GNU General Public License
24     version 2 along with MediaTomb; if not, write to the Free Software
25     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
26 
27     $Id$
28 */
29 
30 /// \file logger.h
31 
32 #ifndef __LOGGER_H__
33 #define __LOGGER_H__
34 
35 #include <spdlog/spdlog.h>
36 
37 #define log_debug SPDLOG_DEBUG
38 #define log_info SPDLOG_INFO
39 #define log_warning SPDLOG_WARN
40 #define log_error SPDLOG_ERROR
41 #define log_js SPDLOG_INFO
42 
43 #endif // __LOGGER_H__
44