From 387e8d8545b90729d817acd6fbfc957e1bdc2c80 Mon Sep 17 00:00:00 2001 From: Abs62 Date: Sun, 17 Nov 2013 00:38:05 +0400 Subject: [PATCH] Some cosmetic in log --- aard.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aard.cc b/aard.cc index eba0ea0d..75d37396 100644 --- a/aard.cc +++ b/aard.cc @@ -757,13 +757,13 @@ vector< sptr< Dictionary::Class > > makeDictionaries( try { - gdDebug( "Aard: Building the index for dictionary: %s", i->c_str() ); + gdDebug( "Aard: Building the index for dictionary: %s\n", i->c_str() ); { QFileInfo info( FsEncoding::decode( i->c_str() ) ); if( info.size() > ULONG_MAX ) { - gdWarning( "File %s is too large", i->c_str() ); + gdWarning( "File %s is too large\n", i->c_str() ); continue; } } @@ -779,7 +779,7 @@ vector< sptr< Dictionary::Class > > makeDictionaries( || strncmp( dictHeader.keyLengthFormat, ">H", 2 ) || strncmp( dictHeader.articleLengthFormat, ">L", 2) ) { - gdWarning( "File %s is not in supported aard format", i->c_str() ); + gdWarning( "File %s is not in supported aard format\n", i->c_str() ); continue; }