|
6 | 6 | import java.io.OutputStream; |
7 | 7 | import java.util.List; |
8 | 8 | import java.util.ArrayList; |
| 9 | +import java.util.logging.Logger; |
9 | 10 | import java.nio.file.Files; |
10 | 11 | import java.nio.file.StandardCopyOption; |
11 | 12 |
|
12 | 13 | import com.dynamo.bob.Bob; |
13 | 14 | import com.dynamo.bob.Platform; |
14 | | -import com.dynamo.bob.logging.Logger; |
15 | 15 | import com.dynamo.bob.util.TimeProfiler; |
16 | 16 |
|
17 | 17 | import org.antlr.v4.runtime.BaseErrorListener; |
@@ -39,7 +39,7 @@ public class LuaPreprocessor implements ILuaPreprocessor { |
39 | 39 | private static void removeToken(Token token) { |
40 | 40 | LuaPreprocessor.hasChanges = true; |
41 | 41 | int from = token.getStartIndex(); |
42 | | - logger.fine("removeToken %s", token.getText()); |
| 42 | + logger.fine("removeToken " + token.getText()); |
43 | 43 | int to = from + token.getText().length() - 1; |
44 | 44 | for(int i = from; i <= to; i++) { |
45 | 45 | parsedBuffer.replace(i, i + 1, " "); |
@@ -94,7 +94,7 @@ public void syntaxError(Recognizer<?, ?> recognizer, Object offendingSymbol, int |
94 | 94 | } |
95 | 95 |
|
96 | 96 | if (LuaPreprocessor.hasChanges) { |
97 | | - logger.fine("LuaPreprocessor: apply %s", buildVariant); |
| 97 | + logger.fine("LuaPreprocessor: apply " + buildVariant); |
98 | 98 | return parsedBuffer.toString(); |
99 | 99 | } |
100 | 100 |
|
|
0 commit comments