Skip to content

Commit

Permalink
Use cyan for times instead of white (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhester authored and hadley committed Oct 18, 2017
1 parent cb5db4a commit a7d31c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/reporter-progress.R
Expand Up @@ -111,7 +111,7 @@ ProgressReporter <- R6::R6Class("ProgressReporter", inherit = Reporter,
self$show_status(complete = TRUE)

if (time[[3]] > self$min_time) {
self$cat(crayon::white(sprintf(" [%.1f s]", time[[3]])))
self$cat(crayon::cyan(sprintf(" [%.1f s]", time[[3]])))
}
self$cat_line()

Expand Down

0 comments on commit a7d31c9

Please sign in to comment.