From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: guile-devel@gnu.org
Cc: David Pirotte <david@altosw.be>,
Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: [Guile-Lib PATCH v3 6/7] logging: Make procedure name available to the log formatter.
Date: Thu, 8 Feb 2024 23:50:47 -0500 [thread overview]
Message-ID: <20240209045150.17210-7-maxim.cournoyer@gmail.com> (raw)
In-Reply-To: <20240209045150.17210-1-maxim.cournoyer@gmail.com>
* src/logging/logger.scm (log-helper): Retrieve procedure name and
pass it to `accept-log'.
(default-log-formatter): Register new proc-name keyword argument, and
include it in formatted message.
(accept-log): New proc-name positional argument; pass it to log-formatter.
* unit-tests/guile-library.api: Regenerate.
---
(no changes since v1)
src/logging/logger.scm | 22 ++++++++++++++--------
unit-tests/guile-library.api | 2 +-
2 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/src/logging/logger.scm b/src/logging/logger.scm
index 05850a9..7085d26 100644
--- a/src/logging/logger.scm
+++ b/src/logging/logger.scm
@@ -222,13 +222,14 @@ Handlers can always be added later via @code{add-handler!} calls.
(define (log-helper lgr level objs source-properties)
;; the level must be enabled in the logger to proceed...
(if (level-enabled? lgr level)
- (let ((cur-time (current-time)))
+ (let ((cur-time (current-time))
+ (proc-name (frame-procedure-name (stack-ref (make-stack #t) 2))))
(for-each (lambda (str)
(unless (string-null? str)
;; pass the string to each log handler for lgr
(for-each (lambda (handler)
(accept-log handler level cur-time str
- source-properties))
+ source-properties proc-name))
(handlers lgr))))
;; split the string at newlines into different log statements
@@ -283,21 +284,25 @@ timestamps to log statements.
;; the default formatter makes a log statement like:
;; 2003/12/29 14:53:02 (CRITICAL): The servers are melting!
(define* (default-log-formatter lvl time str
- #:key source-properties
+ #:key source-properties proc-name
#:allow-other-keys)
"Default log formatting procedure. For source properties to be
available, they must be manually provided to @code{log-msg} via a
-suitable syntax wrapper (currently left to the user to implement)."
+suitable syntax wrapper (currently left to the user to implement).
+@var{proc-name}, if available, is the name of the procedure the
+message was logged from."
(let ((file-name (assoc-ref source-properties 'filename))
;; Note: increment the source property zero-indexed line by 1,
;; to comply with the GNU Standards guidelines (info
;; '(standards) Errors').
(line (and=> (assoc-ref source-properties 'line) 1+))
(column (assoc-ref source-properties 'column)))
- (format #f "~a ~@[~a ~]~:@(~a~): ~a~%"
+ (format #f "~a ~@[~a ~]~@[(~a) ~]~:@(~a~): ~a~%"
(strftime "%F %H:%M:%S" (localtime time))
(and (or file-name line column)
- (format #f "~@[~a:~]~@[~a:~]~@[~a:~]" file-name line column))
+ (format #f "~@[~a:~]~@[~a:~]~@[~a:~]"
+ file-name line column))
+ proc-name
lvl
str)))
@@ -352,10 +357,11 @@ override this behavior.")
;; This can be overridden by log handlers if this default behaviour
;; is not desired..
(define-method (accept-log (self <log-handler>) level time str
- source-properties)
+ source-properties proc-name)
(when (level-enabled? self level)
(emit-log self ((log-formatter self) level time str
- #:source-properties source-properties))))
+ #:source-properties source-properties
+ #:proc-name proc-name))))
;; This should be overridden by all log handlers to actually
;; write out a string.
diff --git a/unit-tests/guile-library.api b/unit-tests/guile-library.api
index 594a1ab..e879b9d 100644
--- a/unit-tests/guile-library.api
+++ b/unit-tests/guile-library.api
@@ -90,7 +90,7 @@
(<logger> class)
(accept-log
generic
- (<log-handler> <top> <top> <top> <top>))
+ (<log-handler> <top> <top> <top> <top> <top>))
(add-handler! generic (<logger> <log-handler>))
(close-log!
generic
--
2.41.0
next prev parent reply other threads:[~2024-02-09 4:50 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20240205194049.7757-1-maxim.cournoyer@gmail.com>
2024-02-06 3:41 ` [Guile-Lib PATCH v2 0/6] Make log-msg accept source properties for displaying source location Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 1/6] configure.ac: Fix typo in message Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 2/6] Use /bin/sh in update-api script shebang Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 3/6] tests: guile-library.api: Re-generate Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 4/6] logging: Allow passing source properties to `log-msg' Maxim Cournoyer
2024-02-06 14:15 ` Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 5/6] logging: Adjust default log-formatter output Maxim Cournoyer
2024-02-06 3:41 ` [Guile-Lib PATCH v2 6/6] logger: Call flush-log at the end of accept-log Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 0/7] Make log-msg accept source properties for displaying source location Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 1/7] configure.ac: Fix typo in message Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 2/7] Use /bin/sh in update-api script shebang Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 3/7] tests: guile-library.api: Re-generate Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 4/7] logging: Allow passing source properties to `log-msg' Maxim Cournoyer
2024-02-09 4:50 ` [Guile-Lib PATCH v3 5/7] logging: Adjust default log-formatter output Maxim Cournoyer
2024-02-09 4:50 ` Maxim Cournoyer [this message]
2024-02-09 4:50 ` [Guile-Lib PATCH v3 7/7] logging: Call flush-log at the end of accept-log Maxim Cournoyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240209045150.17210-7-maxim.cournoyer@gmail.com \
--to=maxim.cournoyer@gmail.com \
--cc=david@altosw.be \
--cc=guile-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).