/*
* Copyright 2009 Dirk Wallenstein
*
* This file is part of Duttulm
*
* Duttulm is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Duttulm is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Duttulm. If not, see <http://www.gnu.org/licenses/>.
*/
/*! \file
* Include this file to turn the debug__() messages off in that compilation unit, or
* to toggle the messages within one compilation unit.
*/
#ifndef GLOBAL_LOGGER_PER_COMP_UNIT_MECH_DISABLED
# ifdef debug__
# undef debug__
# endif
# define debug__( ... )
#endif