- 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 );
filePath
defines the target logfile. For example,/tmp/cinder.log
. If this parameter is left blank, LoggerFile will target a file namedcinder.log
that will sit next to the application binary.appendToExisting
configures file appending. This parameter defaults totrue
.
Show All |