Skip to content
Snippets Groups Projects
Commit 5f508971 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: sieve-error - Move logging to master log to a separate function.

parent a21fe6e2
No related branches found
No related tags found
No related merge requests found
...@@ -72,6 +72,43 @@ void sieve_errors_deinit(struct sieve_instance *svinst) ...@@ -72,6 +72,43 @@ void sieve_errors_deinit(struct sieve_instance *svinst)
* Direct handler calls * Direct handler calls
*/ */
typedef void (*master_log_func_t)(const char *fmt, ...) ATTR_FORMAT(1, 2);
static void ATTR_FORMAT(3, 0)
sieve_direct_master_vlog(struct sieve_instance *svinst ATTR_UNUSED,
const struct sieve_error_params *params,
const char *fmt, va_list args)
{
master_log_func_t log_func;
string_t *str;
switch (params->log_type) {
case LOG_TYPE_ERROR:
log_func = i_error;
break;
case LOG_TYPE_WARNING:
log_func = i_warning;
break;
case LOG_TYPE_INFO:
log_func = i_info;
break;
case LOG_TYPE_DEBUG:
log_func = i_debug;
break;
default:
i_unreached();
}
str = t_str_new(256);
str_append(str, "sieve: ");
if (params->location != NULL && *params->location != '\0')
str_printfa(str, "%s: ", params->location);
str_vprintfa(str, fmt, args);
log_func("%s", str_c(str));
}
void sieve_direct_logv(struct sieve_instance *svinst, void sieve_direct_logv(struct sieve_instance *svinst,
struct sieve_error_handler *ehandler, struct sieve_error_handler *ehandler,
const struct sieve_error_params *params, const struct sieve_error_params *params,
...@@ -581,42 +618,13 @@ void sieve_error_handler_reset(struct sieve_error_handler *ehandler) ...@@ -581,42 +618,13 @@ void sieve_error_handler_reset(struct sieve_error_handler *ehandler)
* - Output errors directly to Dovecot master log * - Output errors directly to Dovecot master log
*/ */
typedef void (*master_log_func_t)(const char *fmt, ...) ATTR_FORMAT(1, 2);
static void ATTR_FORMAT(4, 0) static void ATTR_FORMAT(4, 0)
sieve_master_logv(struct sieve_error_handler *ehandler ATTR_UNUSED, sieve_master_logv(struct sieve_error_handler *ehandler,
const struct sieve_error_params *params, const struct sieve_error_params *params,
enum sieve_error_flags flags ATTR_UNUSED, enum sieve_error_flags flags ATTR_UNUSED,
const char *fmt, va_list args) const char *fmt, va_list args)
{ {
master_log_func_t log_func; sieve_direct_master_vlog(ehandler->svinst, params, fmt, args);
string_t *str;
switch (params->log_type) {
case LOG_TYPE_ERROR:
log_func = i_error;
break;
case LOG_TYPE_WARNING:
log_func = i_warning;
break;
case LOG_TYPE_INFO:
log_func = i_info;
break;
case LOG_TYPE_DEBUG:
log_func = i_debug;
break;
default:
i_unreached();
}
str = t_str_new(256);
str_append(str, "sieve: ");
if (params->location != NULL && *params->location != '\0')
str_printfa(str, "%s: ", params->location);
str_vprintfa(str, fmt, args);
log_func("%s", str_c(str));
} }
struct sieve_error_handler * struct sieve_error_handler *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.