Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
constantine2nd committed Oct 5, 2023
2 parents ca80887 + 8f979f9 commit c51b042
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion obp-api/src/main/scala/code/api/util/ErrorMessages.scala
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ object ErrorMessages {

val InvalidDirectLoginParameters = "OBP-20012: Invalid direct login parameters"

val UsernameHasBeenLocked = "OBP-20013: The account has been locked, please contact administrator !"
val UsernameHasBeenLocked = "OBP-20013: The account has been locked, please contact an administrator!"

val InvalidConsumerId = "OBP-20014: Invalid Consumer ID. Please specify a valid value for CONSUMER_ID."

Expand Down
4 changes: 2 additions & 2 deletions obp-api/src/main/scala/code/api/util/Glossary.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object Glossary extends MdcLoggable {

def getGlossaryItem(title: String): String = {

logger.debug(s"getGlossaryItem says Hello. title to find is: $title")
//logger.debug(s"getGlossaryItem says Hello. title to find is: $title")

val something = glossaryItems.find(_.title.toLowerCase == title.toLowerCase) match {
case Some(foundItem) =>
Expand All @@ -36,7 +36,7 @@ object Glossary extends MdcLoggable {
|""".stripMargin
case None => ""
}
logger.debug(s"getGlossaryItem says the text to return is $something")
//logger.debug(s"getGlossaryItem says the text to return is $something")
something
}

Expand Down

0 comments on commit c51b042

Please sign in to comment.