Skip to content

Commit a00292b

Browse files
committed
Passing by default false as throwException in defaultHAndler
1 parent 8b12cd7 commit a00292b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OptimizelySDK/ErrorHandler/DefaultErrorHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class DefaultErrorHandler : IErrorHandler
2525
/// </summary>
2626
/// <param name="logger">Optional logger to be used to include exception message in the log</param>
2727
/// <param name="throwExceptions">Whether or not to actaully throw the exceptions, true by default</param>
28-
public DefaultErrorHandler(ILogger logger = null, bool throwExceptions = true)
28+
public DefaultErrorHandler(ILogger logger = null, bool throwExceptions = false)
2929
{
3030
Logger = logger;
3131
ThrowExceptions = throwExceptions;

0 commit comments

Comments
 (0)