docfix/Tweak debugging of System environment property

This commit is contained in:
Marko Milić 2024-11-05 10:05:07 +01:00
parent 4d3ea03673
commit f4fa0df34e

View File

@ -3418,7 +3418,7 @@ object APIUtil extends MdcLoggable with CustomJsonFormats{
val sysEnvironmentPropertyValue: Box[String] = sys.env.get(sysEnvironmentPropertyName)
val directPropsValue = sysEnvironmentPropertyValue match {
case Full(_) =>
logger.debug("System environment property value found for: " + sysEnvironmentPropertyName)
logger.debug(s"System environment property value found for $sysEnvironmentPropertyName : $sysEnvironmentPropertyValue")
sysEnvironmentPropertyValue
case _ =>
(Props.get(brandSpecificPropertyName), Props.get(brandSpecificPropertyName + ".is_encrypted"), Props.get(brandSpecificPropertyName + ".is_obfuscated")) match {