[Jdvb-cvs] jdvb-server/src/uk/midearth/dvb/confParser Configurator.java,1.3,1.4 ConfParser.java,1.2,
Status: Inactive
Brought to you by:
hundalz
|
From: pinder <hu...@us...> - 2006-02-24 03:49:36
|
Update of /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb/confParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14092/src/uk/midearth/dvb/confParser Modified Files: Configurator.java ConfParser.java Log Message: close use of System.out.println Index: ConfParser.java =================================================================== RCS file: /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb/confParser/ConfParser.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ConfParser.java 19 Feb 2006 16:59:31 -0000 1.2 --- ConfParser.java 24 Feb 2006 03:49:26 -0000 1.3 *************** *** 45,56 **** in.close(); } catch (Exception ioe) { ! System.out.println("ConfParser>> IOException:: " + ioe); ! ioe.printStackTrace(); } } else { ! System.out.println("ConfParser>> File " + configFile.getAbsolutePath() ! + " does not exist or can not be read."); System.exit(1); } --- 45,55 ---- in.close(); } catch (Exception ioe) { ! LOG.error("ConfParser>> IOException:: " + ioe.getMessage(),ioe); } } else { ! LOG.error("ConfParser>> File " + configFile.getAbsolutePath() ! + " does not exist or can not be read. Quitting"); System.exit(1); } Index: Configurator.java =================================================================== RCS file: /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb/confParser/Configurator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Configurator.java 19 Feb 2006 22:18:37 -0000 1.3 --- Configurator.java 24 Feb 2006 03:49:26 -0000 1.4 *************** *** 54,65 **** in.close(); } catch (Exception ioe) { ! System.out.println("Configurator>> IOException:: " + ioe); ! ioe.printStackTrace(); } } else { ! System.out.println("Configurator>> File " + configFile.getAbsolutePath() ! + " does not exist or can not be read."); System.exit(1); } --- 54,64 ---- in.close(); } catch (Exception ioe) { ! LOG.error("Configurator>> IOException:: " + ioe.getMessage(), ioe); } } else { ! LOG.error("Configurator>> File " + configFile.getAbsolutePath() ! + " does not exist or can not be read. Quitting now"); System.exit(1); } |