diff options
author | Erik Michelson | 2020-09-08 09:58:15 +0200 |
---|---|---|
committer | Erik Michelson | 2020-09-08 09:58:15 +0200 |
commit | 4ece86f0efa1f8f3e4dab0abf810800a045ce632 (patch) | |
tree | b3d0997adf54e1d4105f9bf6949f509b5abd6699 /lib/config | |
parent | 387e6682757d32b9d9e9b7e3d443143a39ce2184 (diff) |
Update documentation and messages to new default value
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
Diffstat (limited to 'lib/config')
-rw-r--r-- | lib/config/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/index.js b/lib/config/index.js index 203b9ef9..b5461a8d 100644 --- a/lib/config/index.js +++ b/lib/config/index.js @@ -52,7 +52,7 @@ if (['debug', 'verbose', 'info', 'warn', 'error'].includes(config.loglevel)) { } if (!['strict', 'lax', 'none'].includes(config.cookiePolicy)) { - logger.error('Cookie SameSite policy %s does not exist. Falling back to strict. Available values are: strict, lax, none.', config.cookiePolicy) + logger.error('Cookie SameSite policy %s does not exist. Falling back to lax. Available values are: strict, lax, none.', config.cookiePolicy) config.cookiePolicy = 'lax' } |