Skip to content

Commit

Permalink
Change the value of location to UNKNOWN
Browse files Browse the repository at this point in the history
  • Loading branch information
MormonJesus69420 authored Nov 7, 2024
1 parent 268a8dd commit c3d00f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/no/nb/mlt/wls/domain/model/Item.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ data class Item(
} else {
// Rare edge case. Log it until we can determine if this actually happens in production
logger.error {
"Item with ID $hostId for host $hostName without a location was picked. Location was set to empty string."
"Item with ID $hostId for host $hostName without a location was picked. Location was set to \"UNKNOWN\"."
}
""
"UNKNOWN"
}
return this.copy(quantity = quantity, location = location)
}
Expand Down

0 comments on commit c3d00f7

Please sign in to comment.