Ignore:
Timestamp:
10/05/11 23:18:55 (13 years ago)
Author:
sherbold
Message:
  • changed some uses of Console.println, Console.traceln and Console.printerrln to one of the other streams for a more consistent use of the different output streams
Location:
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/EventGenerator.java

    r226 r244  
    909909                                        int index = target.lastIndexOf("<"); 
    910910                                        if (index == 0) { 
    911                                                 Console.println("Trying to adress parent of top-level window! Replay probably invalid!"); 
     911                                                Console.traceln("Trying to adress parent of top-level window! Replay probably invalid!"); 
    912912                                        } 
    913913                                        value = target.substring(0, index); 
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/commands/CMDconvertDirToXml.java

    r171 r244  
    5050                        new LogPreprocessor(base64).convertDirToXml(path, target); 
    5151                } catch (FileNotFoundException e) { 
    52                         Console.println(e.getMessage()); 
     52                        Console.printerrln(e.getMessage()); 
    5353                } catch (IOException e) { 
    54                         Console.println(e.getMessage()); 
     54                        Console.printerrln(e.getMessage()); 
    5555                } 
    5656 
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/commands/CMDconvertToXml.java

    r171 r244  
    5050                        new LogPreprocessor(base64).convertToXml(source, target); 
    5151                } catch (FileNotFoundException e) { 
    52                         Console.println(e.getMessage()); 
     52                        Console.printerrln(e.getMessage()); 
    5353                } catch (IOException e) { 
    54                         Console.println(e.getMessage()); 
     54                        Console.printerrln(e.getMessage()); 
    5555                } 
    5656 
Note: See TracChangeset for help on using the changeset viewer.