Skip to content

Commit 883cd93

Browse files
apotterridustinbyrne
authored andcommitted
fix: don't create a log file by default
1 parent 67f044a commit 883cd93

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

agent/src/main/java/com/appland/appmap/config/Properties.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
public class Properties {
1010
public static final String APPMAP_OUTPUT_DIRECTORY_KEY = "appmap.output.directory";
1111
public static final String DISABLE_LOG_FILE_KEY = "appmap.disableLogFile";
12-
public static final Boolean DisableLogFile =
13-
resolveProperty(DISABLE_LOG_FILE_KEY, (Boolean)null);
12+
public static final Boolean DisableLogFile = resolveProperty(DISABLE_LOG_FILE_KEY, true);
1413
public static final Boolean Debug = resolveProperty("appmap.debug", false);
1514
public static final Boolean DebugHooks = Debug || (System.getProperty("appmap.debug.hooks") != null);
1615
public static final Boolean DebugLocals = (System.getProperty("appmap.debug.locals") != null);

0 commit comments

Comments
 (0)