Changeset 166 for trunk


Ignore:
Timestamp:
04/15/07 17:39:03 (5 years ago)
Author:
jlee
Message:

Throwable.printStackTrace -> Logger.logException

Location:
trunk/src/org/thestaticvoid/iriverter
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/thestaticvoid/iriverter/BlackHole.java

    r161 r166  
    4040                                stream.skip(1024); 
    4141                } catch (IOException io) { 
    42                         io.printStackTrace(); 
     42                        Logger.logException(io); 
    4343                } 
    4444        } 
  • trunk/src/org/thestaticvoid/iriverter/ConverterOptions.java

    r157 r166  
    5757                                        text += line + "\n"; 
    5858                        } catch (IOException e) { 
    59                                 e.printStackTrace(); 
     59                                Logger.logException(e); 
    6060                        } 
    6161                } 
  • trunk/src/org/thestaticvoid/iriverter/MencoderShit.java

    r163 r166  
    5858                        exitCode = proc.waitFor(); 
    5959                } catch (Exception e) { 
    60                         e.printStackTrace(); 
     60                        Logger.logException(e); 
    6161                } 
    6262                 
     
    9393                        } catch (MPlayerNotFoundException e) { 
    9494                                // This should never happen 
    95                                 e.printStackTrace(); 
     95                                Logger.logException(e); 
    9696                                throw new FailedToDoSomeShit(description); 
    9797                        }                        
  • trunk/src/org/thestaticvoid/iriverter/MencoderStreamParser.java

    r158 r166  
    9494                                        Thread.sleep(500); 
    9595                                } catch (Exception e) { 
    96                                         e.printStackTrace(); 
     96                                        Logger.logException(e); 
    9797                                } 
    9898                        } 
Note: See TracChangeset for help on using the changeset viewer.