Skip to content

Commit

Permalink
PODS-9782:Logger level changes (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamicwave4 authored Oct 3, 2024
1 parent 21bde06 commit 34e0a87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/models/TolerantAddress.scala
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ object TolerantAddress {
val addressLines: (Option[String], Option[String], Option[String], Option[String]) = {
lines.size match {
case 0 =>
logger.warn(s"[NoAddressLinesFoundException]-$postCode,$countryCode")
logger.debug(s"[NoAddressLinesFoundException]-$postCode,$countryCode")
(None, None, None, None)
case 1 =>
val townOrCounty = getTownOrCounty(town, county, lines)
Expand Down
2 changes: 1 addition & 1 deletion app/utils/TwirlMigration.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TwirlMigration @Inject() (config: Configuration) extends Logging {
val useTwirl = sessionContainsTwirl.getOrElse(twirlMigrationEnabledInConfig)

if(useTwirl) {
logger.warn("Using twirl template")
logger.debug("Using twirl template")
Future.successful(twirl)
} else {
nunjucks
Expand Down

0 comments on commit 34e0a87

Please sign in to comment.