log.h
void Warning(const char *msg)
Function for logging a warning message.
Definition: log.h:99
Logger & operator=(Logger &other)=default
Copy assignment operator, copies a logger object.
void setLogToStderr()
Set the logger object to write to stderr.
Definition: log.cpp:41
void setLogToFile(const std::string &filepath, bool overwrite=false)
Set the logger object to write to specified file.
Definition: log.cpp:49
Logger(Logger &&other)=default
Move constructor, can be used with std::move but does the same as the copy constructor.
friend void Warning(const char *msg)
Function for logging a warning message.
Definition: log.h:99
Definition: apiAttributes.h:21
Logger & operator=(Logger &&other)=default
Move assignment operator, does the same as the copy assignment operator.
~Logger()
Destructor that closes and deletes the log stream object if required i.e. if the log stream is a file...
Definition: log.cpp:35
Logger(const Logger &other)=default
Copy constructor, creates a copy of a logger object.
Logger()=default
Default constructor creates a logger object that does not point to any target/destination.