Logging #26
@ -26,31 +26,33 @@ use LogMessageType::GenericWarn;
|
||||
/**
|
||||
* Logs the given message.
|
||||
*/
|
||||
pub fn log_message(msg: &LogMessage, conf: &LogSettings, file: &str, line: u32, column: u32) -> Result<(), io::Error> {
|
||||
pub fn log_message(
|
||||
msg: &LogMessage,
|
||||
conf: &LogSettings,
|
||||
file: &str,
|
||||
line: u32,
|
||||
column: u32,
|
||||
) -> Result<(), io::Error> {
|
||||
// Check if message may be logged according to config.
|
||||
let Some(log_line) = log_to_str(msg, conf, file, line, column) else {
|
||||
return Ok(());
|
||||
};
|
||||
|
||||
// Log to file
|
||||
match conf.path().as_ref()
|
||||
{
|
||||
None => {/* Do not log to file */}
|
||||
Some(p) =>
|
||||
{
|
||||
match conf.path().as_ref() {
|
||||
None => { /* Do not log to file */ }
|
||||
Some(p) => {
|
||||
let file = OpenOptions::new()
|
||||
.write(true)
|
||||
.append(true)
|
||||
.create(true)
|
||||
|
||||
.open(p);
|
||||
let mut file = match file
|
||||
{
|
||||
let mut file = match file {
|
||||
Ok(f) => f,
|
||||
Err(e) => return Err(e),
|
||||
};
|
||||
match writeln!(file, "{log_line}")
|
||||
{
|
||||
Ok(_) => {},
|
||||
match writeln!(file, "{log_line}") {
|
||||
Ok(_) => {}
|
||||
Err(e) => return Err(e),
|
||||
}
|
||||
}
|
||||
@ -61,7 +63,7 @@ pub fn log_message(msg: &LogMessage, conf: &LogSettings, file: &str, line: u32,
|
||||
return writeln!(stdout, "{log_line}");
|
||||
} else if msg.1 >= Information && *conf.stdout() {
|
||||
let mut stderr = io::stderr().lock();
|
||||
return writeln!(stderr, "{log_line}")
|
||||
return writeln!(stderr, "{log_line}");
|
||||
}
|
||||
return Ok(());
|
||||
}
|
||||
@ -190,4 +192,4 @@ impl Display for LogMessageType {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user
While logging is not a dependency of the program's main function, it is a crucial part of administrating it. If the program cannot log to stdout because the feature was disabled by the admin or due to some problem, it could lead to an edge case-where the program has no logging and cannot inform the sysadmin about errors.
Although I see how panicking is not the best solution. A controlled shutdown is preferable and a config Option allowing the sysadmin to set a limit on how many log-messages may be dropped within x time, without the service shutting down.
@hendrik
If the stdout was disabled, panicking wouldn't tell the admin about the error either. The whole program shutting down is not a good indicator for a failure, if not shutting down is a safe alternative. The program could also notify the admin via CLI, Internet, Email or many other ways that something went wrong while still keeping up its full functionality (as from the perspective of the user).
The error in this case is the inability to report about warnings. This edge-case happens, when there is absolutely no way of informing the sysadmin of other errors, including CLI and E-Mail, etc.
Let's assume the program detects something which could to serious data-loss in the future. The program should warn the sysadmin about it, but not yet shut down, unless the error is possibly imminent. But if all configured ways of logging and communicating with the sysadmin fail, the service should try to shut down to prevent data loss or other unintended behavior.
I would suggest the following:
But until then, I will remove the panic and spit something into stderr, ignoring the stderr setting.
See
e4baaa5f45