Added documentation on error handling.

Default log handler now suppresses LogLevels::Debug messages.
This commit is contained in:
Daviw Williams
2013-05-15 17:01:57 +02:00
parent a1355f6d50
commit 2203e30f39
2 changed files with 39 additions and 1 deletions

View File

@ -31,7 +31,8 @@ namespace PolyVox
{
case LogLevels::Debug:
{
std::cout << "Debug: " << message.c_str() << std::endl;
// Debug messages are not output by this default log handler.
// Provide a custom handler if you want to process them.
break;
}
case LogLevels::Info: