From e4c5af9a58355ff0e3f56ded8bf16334d11e9316 Mon Sep 17 00:00:00 2001 From: Douglas <32344964+NotTheDr01ds@users.noreply.github.com> Date: Wed, 2 Oct 2024 08:40:54 -0400 Subject: [PATCH] Remove outdated logging module (#966) I haven't been through all of them yet, and some of those that I have reviewed still have useful info that should be preserved. However, this `logging.nu` version seems to long predate the one we now have in the standard-library. --- stdlib-candidate/std-rfc/logging.nu | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 stdlib-candidate/std-rfc/logging.nu diff --git a/stdlib-candidate/std-rfc/logging.nu b/stdlib-candidate/std-rfc/logging.nu deleted file mode 100644 index ee3f8cc..0000000 --- a/stdlib-candidate/std-rfc/logging.nu +++ /dev/null @@ -1,6 +0,0 @@ -# This is a first attempt and some type of logging -def log [message:any] { - let now = (date now | format date '%Y%m%d_%H%M%S.%f') - let mess = $"($now)|DBG|($message)(char nl)" - $mess -}