remove logging

This commit is contained in:
Eric House 2015-06-03 07:45:11 -07:00
parent 39298931d2
commit 01d9dcc371

View file

@ -344,7 +344,7 @@ public class DictUtils {
if ( loc == DictLoc.UNKNOWN || loc == DictLoc.DOWNLOAD ) { if ( loc == DictLoc.UNKNOWN || loc == DictLoc.DOWNLOAD ) {
File path = getDownloadsPathFor( context, name ); File path = getDownloadsPathFor( context, name );
if ( null != path && path.exists() ) { if ( null != path && path.exists() ) {
DbgUtils.logf( "loading %s from Download", name ); // DbgUtils.logf( "loading %s from Download", name );
fis = new FileInputStream( path ); fis = new FileInputStream( path );
} }
} }
@ -352,13 +352,13 @@ public class DictUtils {
if ( loc == DictLoc.UNKNOWN || loc == DictLoc.EXTERNAL ) { if ( loc == DictLoc.UNKNOWN || loc == DictLoc.EXTERNAL ) {
File sdFile = getSDPathFor( context, name ); File sdFile = getSDPathFor( context, name );
if ( null != sdFile && sdFile.exists() ) { if ( null != sdFile && sdFile.exists() ) {
DbgUtils.logf( "loading %s from SD", name ); // DbgUtils.logf( "loading %s from SD", name );
fis = new FileInputStream( sdFile ); fis = new FileInputStream( sdFile );
} }
} }
if ( null == fis ) { if ( null == fis ) {
if ( loc == DictLoc.UNKNOWN || loc == DictLoc.INTERNAL ) { if ( loc == DictLoc.UNKNOWN || loc == DictLoc.INTERNAL ) {
DbgUtils.logf( "loading %s from private storage", name ); // DbgUtils.logf( "loading %s from private storage", name );
fis = context.openFileInput( name ); fis = context.openFileInput( name );
} }
} }