From 837b6eed3906e0d918923fb41590aefd926b2820 Mon Sep 17 00:00:00 2001 From: smartiing <159499215+smartiing@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:29:27 +0200 Subject: [PATCH] fix: Remove global option for millisecond time display in .onLoad(). The options(digits.secs = 3) line was removed from the .onLoad function to avoid changing the default global time display settings to millisecond precision. This prevents unintended modifications to users' global options. --- R/emayili.R | 1 - 1 file changed, 1 deletion(-) diff --git a/R/emayili.R b/R/emayili.R index 4011778..90fc7e0 100644 --- a/R/emayili.R +++ b/R/emayili.R @@ -26,7 +26,6 @@ NULL .onLoad <- function(libname, pkgname) { # nolint start # nocov start - options(digits.secs = 3) log_layout(layout_glue_generator('{stringr::str_pad(level, 7, side = "right")} [{time}] {msg}')) # nocov end # nolint end