Skip to content

Commit

Permalink
[api]: Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagohm committed Oct 13, 2024
1 parent 51b70e7 commit 9980bd8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions nebulosa-log/src/main/kotlin/nebulosa/log/Log.kt
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ inline fun Logger.dw(message: String, a0: Any?, a1: Any?) {
if (isDebugEnabled) warn(message, a0, a1)
}

inline fun Logger.dw(message: String, a0: Any?, a1: Any?, a2: Any?) {
if (isDebugEnabled) warn(message, a0, a1, a2)
}

// DEBUG INFO

inline fun Logger.di(message: String) {
Expand Down

0 comments on commit 9980bd8

Please sign in to comment.