Skip to content

Commit fc1290a

Browse files
committed
Changed default to false
1 parent 569a7e0 commit fc1290a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

phase4-lib/src/main/java/com/helger/phase4/config/AS4Configuration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ public static String getThisEndpointAddress ()
297297
public static boolean isIncludeStackTraceInErrorMessages ()
298298
{
299299
// Defaults to true for backwards compatibility reason
300-
return getConfig ().getAsBoolean ("phase4.errormsg.include.stacktraces", true);
300+
// Changed default to false in v3.0.2
301+
return getConfig ().getAsBoolean ("phase4.errormsg.include.stacktraces", false);
301302
}
302303
}

0 commit comments

Comments
 (0)