mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +01:00
remove logging when file-not-found
This commit is contained in:
parent
8af99e39d1
commit
41dbc5dfa3
1 changed files with 2 additions and 2 deletions
|
@ -328,7 +328,7 @@ public class DictUtils {
|
|||
// check that with len bytes we've read the whole file
|
||||
Assert.assertTrue( -1 == dict.read() );
|
||||
} catch ( java.io.IOException ee ){
|
||||
DbgUtils.logf( "%s failed to open; likely not built-in", name );
|
||||
// DbgUtils.logf( "%s failed to open; likely not built-in", name );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -364,7 +364,7 @@ public class DictUtils {
|
|||
fis.close();
|
||||
DbgUtils.logf( "Successfully loaded %s", name );
|
||||
} catch ( java.io.FileNotFoundException fnf ) {
|
||||
DbgUtils.loge( fnf );
|
||||
// DbgUtils.loge( fnf );
|
||||
} catch ( java.io.IOException ioe ) {
|
||||
DbgUtils.loge( ioe );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue