- cinder::Noncopyable
- cinder::log::Logger
- cinder::log::LoggerFile
LoggerFile will write log messages to a specified file.
LoggerFile will write to a specified file, either appending to or overwriting that file at application startup.
LoggerFile( const fs::path &filePath = fs::path(), bool appendToExisting = true );
- filePathdefines the target logfile. For example,- /tmp/cinder.log. If this parameter is left blank, LoggerFile will target a file named- cinder.logthat will sit next to the application binary.
- appendToExistingconfigures file appending. This parameter defaults to- true.
Show All |