|
Fluid Dynamics Library
|
#include <sstream>#include <string>#include <list>#include <vector>Go to the source code of this file.
Classes | |
| class | fdl::Logger |
Namespaces | |
| namespace | fdl |
Defines | |
| #define | LOG(level) fdl::Logger::canLog(level) && fdl::Logger().log(level) |
| #define | DEV() fdl::Logger::canLog(fdl::Logger::DEV) && fdl::Logger().log(fdl::Logger::DEV) |
| #define | DEBUG() fdl::Logger::canLog(fdl::Logger::DEBUG) && fdl::Logger().log(fdl::Logger::DEBUG) |
| #define | INFO() fdl::Logger::canLog(fdl::Logger::INFO) && fdl::Logger().log(fdl::Logger::INFO) |
| #define | ERROR() fdl::Logger::canLog(fdl::Logger::ERROR) && fdl::Logger().log(fdl::Logger::ERROR) |
| #define | LOGIdent(level, identity) fdl::Logger::canLog(level) && ecs::Logger().log(level, identity) |
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
Definition in file logger.h.
1.7.4