Java compile error

0
I want to upgrade from 2.5.8 to 3.3.7. Importing the project is no problem ( 0 errors). Try to 'run' the project gives the java error below. How to solve this problem? Ben Buildfile: D:\Mendix\Mendix 3.3.7\Norim_Modeler_III_2013_06_25_BaseLine\deployment\build.xml compile: [javac] Compiling 525 source files to D:\Mendix\Mendix 3.3.7\Norim_Modeler_III_2013_06_25_BaseLine\deployment\model\lib\bin [javac] D:\Mendix\Mendix 3.3.7\Norim_Modeler_III_2013_06_25_BaseLine\javasource\modeler\actions\ProjectFileCreator.java:372: cannot find symbol [javac] symbol : method getLogNode(java.lang.String) [javac] location: class com.mendix.core.Core [javac] Core.getLogNode(this.toString()).info(msg); [javac] ^ [javac] D:\Mendix\Mendix 3.3.7\Norim_Modeler_III_2013_06_25_BaseLine\javasource\modeler\actions\ProjectFileCreator.java:396: cannot find symbol [javac] symbol : method getLogNode(java.lang.String) [javac] location: class com.mendix.core.Core [javac] Core.getLogNode(this.toString()).warn("The table: " + this.getTableName(obj.getName()) + " contains " + amount + " empty values in the column: " + column); [javac] ^ [javac] 2 errors BUILD FAILED D:\Mendix\Mendix 3.3.7\Norim_Modeler_III_2013_06_25_BaseLine\deployment\build.xml:65: Compile failed; see the compiler error output for details. Total time: 5 seconds
asked
2 answers
1

This is due to API changes that were deprecated for a long time and were finally removed. You should change the method getLogNode to getLogger

answered
0

Thanks (Quick reaction)!

answered