Skip to content

Commit

Permalink
fixed printAndLapTotal
Browse files Browse the repository at this point in the history
  • Loading branch information
MFlisar committed Feb 11, 2019
1 parent c54cfb1 commit 242528f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/main/java/com/michaelflisar/lumberjack/T.kt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ object T {

val lap = lap(key) ?: return "NULL"
val data = getTimer(key)
val total = data.getLastLapTotal() ?: "NULL"
val total = data.getTotal() ?: "NULL"
return "Total = " + total + "ms | Lap = " + lap + "ms"
}

Expand Down

0 comments on commit 242528f

Please sign in to comment.