Skip to content

Commit

Permalink
Fix error logging for ip address retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Oct 26, 2019
1 parent aa21e0e commit c5040f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/me/proxer/app/util/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ object Utils {
.map { it.hostAddress }
.firstOrNull()
} catch (error: Throwable) {
Timber.e("Error trying to get ip address", error)
Timber.e(error, "Error trying to get ip address")

null
}
Expand Down

0 comments on commit c5040f1

Please sign in to comment.