1 /* 2 Copyright (C) 2009 - 2018 by Mark de Wever <koraq@xs4all.nl> 3 Part of the Battle for Wesnoth Project https://www.wesnoth.org/ 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published by 7 the Free Software Foundation; either version 2 of the License, or 8 (at your option) any later version. 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY. 11 12 See the COPYING file for more details. 13 */ 14 15 /** 16 * @file 17 * Define the loggers for the gui toolkit. 18 */ 19 20 #define GETTEXT_DOMAIN "wesnoth-lib" 21 22 #include "gui/core/log.hpp" 23 24 namespace gui2 25 { 26 27 lg::log_domain log_gui_draw("gui/draw"); 28 lg::log_domain log_gui_event("gui/event"); 29 lg::log_domain log_gui_general("gui/general"); 30 lg::log_domain log_gui_iterator("gui/iterator"); 31 lg::log_domain log_gui_lifetime("gui/lifetime"); 32 lg::log_domain log_gui_layout("gui/layout"); 33 lg::log_domain log_gui_parse("gui/parse"); 34 35 } // namespace gui2 36