Changeset 166
- Timestamp:
- 04/15/07 14:39:03 (2 years ago)
- Files:
-
- trunk/src/org/thestaticvoid/iriverter/BlackHole.java (modified) (1 diff)
- trunk/src/org/thestaticvoid/iriverter/ConverterOptions.java (modified) (1 diff)
- trunk/src/org/thestaticvoid/iriverter/MencoderShit.java (modified) (2 diffs)
- trunk/src/org/thestaticvoid/iriverter/MencoderStreamParser.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/org/thestaticvoid/iriverter/BlackHole.java
r161 r166 40 40 stream.skip(1024); 41 41 } catch (IOException io) { 42 io.printStackTrace();42 Logger.logException(io); 43 43 } 44 44 } trunk/src/org/thestaticvoid/iriverter/ConverterOptions.java
r157 r166 57 57 text += line + "\n"; 58 58 } catch (IOException e) { 59 e.printStackTrace();59 Logger.logException(e); 60 60 } 61 61 } trunk/src/org/thestaticvoid/iriverter/MencoderShit.java
r163 r166 58 58 exitCode = proc.waitFor(); 59 59 } catch (Exception e) { 60 e.printStackTrace();60 Logger.logException(e); 61 61 } 62 62 … … 93 93 } catch (MPlayerNotFoundException e) { 94 94 // This should never happen 95 e.printStackTrace();95 Logger.logException(e); 96 96 throw new FailedToDoSomeShit(description); 97 97 } trunk/src/org/thestaticvoid/iriverter/MencoderStreamParser.java
r158 r166 94 94 Thread.sleep(500); 95 95 } catch (Exception e) { 96 e.printStackTrace();96 Logger.logException(e); 97 97 } 98 98 }
