Mercurial > p > roundup > code
diff CHANGES.txt @ 8487:b09ef85f0da6
feat: add nanoid pkg trace_id gen and decorator for setting processName
nanoid is a shorter unique id generator and faster than uuid.
I truncate nanoid id's to 12 chars to make it more readable.
Also added decorator to allow setting the default processName
definition in the logging module. admin.py and wsgi_handler now set
processName. configuration.py knows how to overide the processName if
set to the default MainProcess.
Updated install docs to add nanoid as optional, how to switch to
different trace_id output. pydoc generated docs include logcontext
module and are referenced from admin.py.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 08 Dec 2025 00:23:14 -0500 |
| parents | 224ccb8b49ca |
| children | 7142740e6547 |
line wrap: on
line diff
--- a/CHANGES.txt Sat Nov 15 16:59:24 2025 -0500 +++ b/CHANGES.txt Mon Dec 08 00:23:14 2025 -0500 @@ -54,9 +54,10 @@ logging format. (John Rouillard) - the default logging format template includes an identifier unique for a request. This identifier (trace_id) can be use to identify - logs for a specific transaction. Logging also supports a - trace_reason log token with the url for a web request. The logging - format can be changed in config.ini. (John Rouillard) + logs for a specific transaction. Will use nanoid if installed, uses + uuid.uuid4 otherwise. Logging also supports a trace_reason log token + with the url for a web request. The logging format can be changed in + config.ini. (John Rouillard) 2025-07-13 2.5.0
