Commit ee60e76b ee60e76b694a73b14f2e31ece85324847e0fc57f by Sergey Poznyakoff

Log sieve source location in maidag

* lib/sieve.c (_sieve_action_log): Log source location
1 parent fe6c328b
...@@ -37,7 +37,8 @@ _sieve_action_log (mu_sieve_machine_t mach, ...@@ -37,7 +37,8 @@ _sieve_action_log (mu_sieve_machine_t mach,
37 mu_message_t msg = mu_sieve_get_message (mach); 37 mu_message_t msg = mu_sieve_get_message (mach);
38 38
39 mu_sieve_get_diag_stream (mach, &stream); 39 mu_sieve_get_diag_stream (mach, &stream);
40 mu_stream_printf (stream, "\033s<%d>", MU_LOG_NOTICE); 40 mu_stream_printf (stream, "\033s<%d>\033O<%d>", MU_LOG_NOTICE,
41 MU_LOGMODE_LOCUS);
41 42
42 if (ldat) 43 if (ldat)
43 { 44 {
......