sybila / parasim

Tool for paralell simulations and verification
GNU General Public License v3.0
3 stars 1 forks source link

Resolve apache log4j API discrepancies #115

Closed tomvej closed 11 years ago

tomvej commented 11 years ago

The progress logger extension cannot be built (try mvn clean install, build-all.sh won't work as it is not introduced in profiles) due to compilation errors:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project progress-logger: Compilation failure: Compilation failure: [ERROR] /home/thomas/muni/parasim/extensions/progress-logger/src/main/java/org/sybila/parasim/extension/progresslogger/view/StyledLoggerOutput.java:[44,54] error: cannot find symbol [ERROR] symbol: variable TRACE [ERROR] location: class Level [ERROR] /home/thomas/muni/parasim/extensions/progress-logger/src/main/java/org/sybila/parasim/extension/progresslogger/view/StyledLoggerOutput.java:[79,78] error: cannot find symbol [ERROR] symbol: method getTimeStamp() [ERROR] location: variable event of type LoggingEvent [ERROR] /home/thomas/muni/parasim/extensions/progress-logger/src/main/java/org/sybila/parasim/extension/progresslogger/view/StyledLoggerOutput.java:[117,52] error: cannot find symbol

According to apache log4j interface, both these symbols should be accessible (TRACE since 1.2.12, getTimeStamp() since 1.2.15).

The code was compiled without errors on wendesday when the logger extension was demonstrated. Since then, no changes were made.