#include <iostream>#include <fstream>#include <sstream>#include <string>#include <boost/thread.hpp>#include "gazebo/common/SingletonT.hh"#include "gazebo/common/CommonTypes.hh"#include "gazebo/util/system.hh"Go to the source code of this file.
Classes | |
| class | FileLogger::Buffer |
| String buffer for the file logger. More... | |
| class | Logger::Buffer |
| String buffer for the base logger. More... | |
| class | Console |
| Container for loggers, and global logging options (such as verbose vs. More... | |
| class | FileLogger |
| A logger that outputs messages to a file. More... | |
| class | Logger |
| Terminal logger. More... | |
Namespaces | |
| namespace | gazebo |
| Forward declarations for the common classes. | |
| namespace | gazebo::common |
| Common namespace. | |
Macros | |
| #define | gzdbg (gazebo::common::Console::dbg(__FILE__, __LINE__)) |
| Output a debug message. | |
| #define | gzerr (gazebo::common::Console::err(__FILE__, __LINE__)) |
| Output an error message. | |
| #define | gzlog (gazebo::common::Console::log()) |
| Output a message to a log file. | |
| #define | gzLogDirectory() |
| Get the full path of the directory where the log files are stored. | |
| #define | gzLogInit(_prefix, _str) |
| Initialize log file with filename given by _str. | |
| #define | gzmsg (gazebo::common::Console::msg()) |
| Output a message. | |
| #define | gzwarn (gazebo::common::Console::warn(__FILE__, __LINE__)) |
| Output a warning message. | |