Ignore:
Timestamp:
08/27/12 15:53:25 (12 years ago)
Author:
sherbold
Message:
  • all usages of the Console tracing API now define log levels
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/LogPreprocessor.java

    r581 r639  
    66import java.io.IOException; 
    77import java.io.OutputStreamWriter; 
     8import java.util.logging.Level; 
    89 
    910import org.apache.commons.codec.binary.Base64; 
     
    130131                for (String filename : folder.list()) { 
    131132                        String source = absolutPath + "/" + filename; 
    132                         Console.traceln("Processing file: " + source); 
     133                        Console.traceln(Level.INFO, "Processing file: " + source); 
    133134                        processFile(source, targetFile); 
    134135                } 
Note: See TracChangeset for help on using the changeset viewer.