Kim Alvefur
|
4bf9c26a26
|
core.loggingmanager: Bump expected util.pposix version
Otherwise no syslog or console detection
|
2024-11-16 14:35:36 +01:00 |
|
Kim Alvefur
|
d47a7bb3bd
|
core: Prefix module imports with prosody namespace
|
2023-03-17 16:23:07 +01:00 |
|
Kim Alvefur
|
70598062e3
|
core.loggingmanager: Add FIXME about supporting console logging to stderr
Currently it is hard codded to be a specialized stdout logger, which
should be fixed one day.
|
2022-02-02 18:36:08 +01:00 |
|
Kim Alvefur
|
31eb61f22a
|
core.loggingmanager: Disable pretty printing when not connected to a tty
Things can behave unexpectedly when fed ANSI escape codes.
|
2021-07-04 15:11:53 +02:00 |
|
Kim Alvefur
|
bfb4514d0f
|
core.loggingmanager: Pretty-print logged XML snippets in console
This replaces an earlier method in a private extension that logged
pretty-printed XML, which broke due to the escaping added in util.format
|
2021-06-29 16:07:57 +02:00 |
|
Kim Alvefur
|
417846da58
|
core.loggingmanager: Support passing log messages trough a filter
This will be used by the console logger for pretty printing.
|
2021-06-29 16:05:35 +02:00 |
|
Matthew Wild
|
2ab785fd9f
|
loggingmanager, mod_posix: Move syslog to core, fixes #541 (in a way)
|
2019-03-26 14:48:21 +00:00 |
|
Matthew Wild
|
de72422137
|
Backed out changeset 3eea63a68e0f
Commit included intended changes to loggingmanager
|
2019-03-26 13:51:06 +00:00 |
|
Matthew Wild
|
3c50aa4902
|
util.queue: Update :items() to consistently use private data directly
It will perform better this way, and we were accessing private variables
already within the iterator.
|
2019-03-23 08:52:57 +00:00 |
|
Kim Alvefur
|
1d903e3442
|
loggingmanager: Remove luacheck annotations for global log functions that are now set in util.startup
|
2018-04-10 22:43:13 +02:00 |
|
Kim Alvefur
|
b594f3b843
|
util.startup: Set up event hooks for reloading logging here instead of in loggingmanager to simplify startup dependencies
|
2018-04-05 17:53:51 +02:00 |
|
Kim Alvefur
|
eacc7b0dd3
|
util.startup: Initialize prosody.log / _G.log here instead of in loggingmanager to reduce dependencies
|
2018-04-05 17:52:37 +02:00 |
|
Kim Alvefur
|
6684c9901a
|
loggingmanager: Hook event for reopening log files instead of config reloaded
|
2018-03-25 17:02:39 +02:00 |
|
Kim Alvefur
|
43b814a83b
|
vairious: Add annotation when an empty environment is set [luacheck]
|
2018-02-28 20:06:26 +01:00 |
|
Kim Alvefur
|
4c39528a44
|
loggingmanager: Make timestamps enabled by default in file sink (fixes #1004)
|
2017-10-26 22:30:52 +02:00 |
|
Kim Alvefur
|
a5f43007f1
|
core.loggingmanager: Remove now unused locals [luacheck]
|
2017-09-11 19:32:51 +02:00 |
|
Kim Alvefur
|
35717a1e41
|
loggingmanager, mod_posix: Import util.format correctly (fixes #985)
|
2017-09-11 19:32:12 +02:00 |
|
Waqas Hussain
|
f4aebb575e
|
loggingmanager: Slight cleanup and optimization of file sink
|
2017-09-10 13:13:24 -04:00 |
|
Waqas Hussain
|
00cb31f022
|
loggingmanager, mod_posix: Replace the old inconsistent log formatting with the new util.format
|
2017-09-10 13:05:45 -04:00 |
|
Kim Alvefur
|
e45c5961ac
|
core: Allow select core modules to mutate some globals (needs luacheck 1.19)
|
2017-03-04 20:09:28 +01:00 |
|
Kim Alvefur
|
e349fb9c87
|
loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack [luacheck]
|
2016-02-18 14:57:51 +01:00 |
|
Matthew Wild
|
952ba43fea
|
loggingmanager: Import select() to fix global access
|
2016-02-18 13:21:12 +00:00 |
|
Kim Alvefur
|
1ca9c3d520
|
loggingmanager: Stringify all arguments to format so we can finally see the *real* error messages
|
2016-02-04 20:45:37 +01:00 |
|
Kim Alvefur
|
47f497ad93
|
loggingmanager: Remove Windows hack, buffer_mode should fix this
|
2016-02-04 18:40:24 +01:00 |
|
Kim Alvefur
|
883547a4db
|
loggingmanager: Write out timestamps in same write() call as everything else
|
2016-02-04 17:57:12 +01:00 |
|
Kim Alvefur
|
c9f2829f6e
|
loggingmanager: Make initial value for width of log name configurable
|
2016-02-04 17:51:39 +01:00 |
|
Kim Alvefur
|
c32e03898c
|
loggingmanager: Move logic for adaptive column width into file sink, append tab if disabled (fixes separation between name and level in plain file sinks)
|
2016-02-04 17:49:09 +01:00 |
|
Kim Alvefur
|
68d6b5e89e
|
loggingmanager: Refactor the console log sink to re-use the stdout sink which in turn uses the file sink (tailcalls!)
|
2016-02-04 17:33:16 +01:00 |
|
Kim Alvefur
|
fe4731209e
|
loggingmanager: Write out color code, log level and reset code in one call
|
2016-02-04 17:03:04 +01:00 |
|
Kim Alvefur
|
fc2a0d90fc
|
loggingmanager: Don't reset default timestamp that is not changed by any other code
|
2016-02-04 16:56:05 +01:00 |
|
Matthew Wild
|
de372ae245
|
loggingmanager: Call setvbuf on output files, defaulting to line-buffered, instead of manually calling flush(). Adds 'buffer_mode' option to sink configuration for stdout, console and file sinks.
|
2016-02-04 14:56:49 +00:00 |
|
Matthew Wild
|
16f55dac02
|
loggingmanager: Add prosody.log (intended to be used instead of _G.log now)
|
2015-12-11 14:00:42 +00:00 |
|
Kim Alvefur
|
27265c20e2
|
core.*: Remove use of module() function
|
2015-02-21 10:42:19 +01:00 |
|
Matthew Wild
|
bb08d35ca7
|
loggingmanager: Rename function arguments to avoid name conflict [luacheck] (core/ is now luacheck-clean!)
|
2015-05-18 19:09:07 +01:00 |
|
Matthew Wild
|
b13254c233
|
loggingmanager: Improve code structure (removes empty if branch)
|
2015-04-03 19:20:24 +01:00 |
|
Florian Zeitz
|
1d833bb807
|
Remove all trailing whitespace
|
2013-08-09 17:48:21 +02:00 |
|
Kim Alvefur
|
1acfdf5914
|
core.*: Complete removal of all traces of the "core" section and section-related code.
|
2013-03-23 02:33:15 +01:00 |
|
Kim Alvefur
|
c141ffdbf6
|
core.loggingmanager: Don't create file log rules from [level] = "*sink" style config
|
2012-12-27 20:44:58 +01:00 |
|
Matthew Wild
|
a9b4512005
|
loggingmanager: Remove unused variables
|
2012-07-24 15:50:11 +01:00 |
|
Matthew Wild
|
fe16dde20b
|
loggingmanager, util.logger: Remove name sinks and the ability to filter logs by source name (lots of code, hardly used if at all, and possibly broken)
|
2012-03-15 19:09:24 +00:00 |
|
Matthew Wild
|
a6418c6df2
|
loggingmanager: Remove unused 'critical' level
|
2011-11-22 17:56:52 +00:00 |
|
Matthew Wild
|
29747bfa1e
|
loggingmanager: Allow specifying a sink type in per-level logging config (thanks ruskie)
|
2011-02-13 18:37:34 +00:00 |
|
Matthew Wild
|
807eb44ee6
|
loggingmanager: Iterate over logging config rules using ipairs rather than pairs
|
2011-02-13 18:35:39 +00:00 |
|
Waqas Hussain
|
db0a3bec91
|
loggingmanager: Fix reading configuration of timestamps for console output.
|
2011-01-13 02:33:50 +05:00 |
|
Waqas Hussain
|
6abd0110a4
|
loggingmanager: Re-read 'debug' option on reload.
|
2011-01-13 02:31:10 +05:00 |
|
Matthew Wild
|
ddde44eb04
|
loggingmanager: Remove event hook that never fired anyway, and held logfiles open - leave the GC to close them now.
|
2011-01-11 22:40:09 +00:00 |
|
Waqas Hussain
|
ec51542c8f
|
core.loggingmanager: Updated to use termcolours.getstyle instead of termcolours.getstring for console logging.
|
2010-12-15 01:57:10 +05:00 |
|
Waqas Hussain
|
b7e51a203d
|
Monster whitespace commit (beware the whitespace monster).
|
2010-10-16 23:00:42 +05:00 |
|
Matthew Wild
|
a60d832a39
|
core.loggingmanager: Logging config simplification - allow [level] = filename and *sink to appear in the config table
|
2010-10-08 02:48:47 +01:00 |
|
Matthew Wild
|
e0c2d8a9b3
|
loggingmanager: Remove (redundant!) dependency on eventmanager
|
2010-08-03 10:59:47 +01:00 |
|