Home | Features | Roadmap | Learn | Documentation | ||
Latest version: Tramway SDK 0.0.9 Github Quick links Home Get Started |
LoggingThe logging system provides logging. Currently all logs are just dumped to standard output. In the future I'll add in some more logging stuff, like saving logs to a file. It's possible to assign the system from which the logging statement originates, as well as the logging statements severity. Logs then can be filtered based on the system and severity. SeveritiesInfo | SEVERITY_INFOFor very verbose debugging purposes. Useful to dump anything and everything. Filtered out by default. Warning | SEVERITY_WARNINGFor things that should be looked at, such as the use of deprecated functionality, missing files and such. Error | SEVERITY_ERRORFor things that are ungood, but can be recovered from, such as errors with file formatting, incorrect usage of functionality and such. Doubleplus Ungood Error | SEVERITY_CRITICAL_ERRORFor errors that can't be recovered from. Useful to log some final data before aborting the application. Programming in C++
// filter out everything coming from the Platform
|
|
|