Skip to content

Commit 07f895e

Browse files
committed
Set $logGlobalContext to false by default
1 parent 1136fa0 commit 07f895e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/Config/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Logger extends BaseConfig
6565
* **NOTE:** This **DOES NOT** include any data that has been marked as hidden
6666
* using the `setHidden()` method of the Context class.
6767
*/
68-
public bool $logGlobalContext = true;
68+
public bool $logGlobalContext = false;
6969

7070
/**
7171
* --------------------------------------------------------------------------

system/Log/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class Logger implements LoggerInterface
121121
*
122122
* @var bool
123123
*/
124-
protected bool $logGlobalContext = true;
124+
protected bool $logGlobalContext = false;
125125

126126
/**
127127
* Constructor.

0 commit comments

Comments
 (0)