Don't debug log empty strings
This commit is contained in:
parent
02ab64da2e
commit
1b1f3a88bc
1 changed files with 4 additions and 2 deletions
|
@ -64,9 +64,11 @@ namespace Detail {
|
|||
|
||||
struct OutputDebugWriter {
|
||||
|
||||
void operator()( std::string const&str ) {
|
||||
void operator()( std::string const& str ) {
|
||||
if ( !str.empty() ) {
|
||||
writeToDebugConsole( str );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue