112 lines
3.8 KiB
Diff
112 lines
3.8 KiB
Diff
diff -up cups-2.2.6/scheduler/log.c.journal-history cups-2.2.6/scheduler/log.c
|
|
--- cups-2.2.6/scheduler/log.c.journal-history 2018-06-11 16:39:09.323688006 +0200
|
|
+++ cups-2.2.6/scheduler/log.c 2018-06-11 17:08:17.393764901 +0200
|
|
@@ -598,48 +598,17 @@ cupsdLogJob(cupsd_job_t *job, /* I - Jo
|
|
return (1);
|
|
|
|
#ifdef HAVE_SYSTEMD_SD_JOURNAL_H
|
|
- if (!strcmp(ErrorLog, "syslog"))
|
|
- {
|
|
- cupsd_printer_t *printer = job ? (job->printer ? job->printer : (job->dest ? cupsdFindDest(job->dest) : NULL)) : NULL;
|
|
- static const char * const job_states[] =
|
|
- { /* job-state strings */
|
|
- "Pending",
|
|
- "PendingHeld",
|
|
- "Processing",
|
|
- "ProcessingStopped",
|
|
- "Canceled",
|
|
- "Aborted",
|
|
- "Completed"
|
|
- };
|
|
-
|
|
- va_start(ap, message);
|
|
-
|
|
- do
|
|
- {
|
|
- va_copy(ap2, ap);
|
|
- status = format_log_line(message, ap2);
|
|
- va_end(ap2);
|
|
- }
|
|
- while (status == 0);
|
|
-
|
|
- va_end(ap);
|
|
-
|
|
- if (job)
|
|
- sd_journal_send("MESSAGE=%s", log_line,
|
|
- "PRIORITY=%i", log_levels[level],
|
|
- PWG_Event"=JobStateChanged",
|
|
- PWG_ServiceURI"=%s", printer ? printer->uri : "",
|
|
- PWG_JobID"=%d", job->id,
|
|
- PWG_JobState"=%s", job->state_value < IPP_JSTATE_PENDING ? "" : job_states[job->state_value - IPP_JSTATE_PENDING],
|
|
- PWG_JobImpressionsCompleted"=%d", ippGetInteger(job->impressions, 0),
|
|
- NULL);
|
|
- else
|
|
- sd_journal_send("MESSAGE=%s", log_line,
|
|
- "PRIORITY=%i", log_levels[level],
|
|
- NULL);
|
|
-
|
|
- return (1);
|
|
- }
|
|
+ cupsd_printer_t *printer = job ? (job->printer ? job->printer : (job->dest ? cupsdFindDest(job->dest) : NULL)) : NULL;
|
|
+ static const char * const job_states[] =
|
|
+ { /* job-state strings */
|
|
+ "Pending",
|
|
+ "PendingHeld",
|
|
+ "Processing",
|
|
+ "ProcessingStopped",
|
|
+ "Canceled",
|
|
+ "Aborted",
|
|
+ "Completed"
|
|
+ };
|
|
#endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
|
|
|
|
/*
|
|
@@ -705,7 +674,29 @@ cupsdLogJob(cupsd_job_t *job, /* I - Jo
|
|
return (1);
|
|
}
|
|
else if (level <= LogLevel)
|
|
+ {
|
|
+#ifdef HAVE_SYSTEMD_SD_JOURNAL_H
|
|
+ if (!strcmp(ErrorLog, "syslog"))
|
|
+ {
|
|
+ if (job)
|
|
+ sd_journal_send("MESSAGE=%s", log_line,
|
|
+ "PRIORITY=%i", log_levels[level],
|
|
+ PWG_Event"=JobStateChanged",
|
|
+ PWG_ServiceURI"=%s", printer ? printer->uri : "",
|
|
+ PWG_JobID"=%d", job->id,
|
|
+ PWG_JobState"=%s", job->state_value < IPP_JSTATE_PENDING ? "" : job_states[job->state_value - IPP_JSTATE_PENDING],
|
|
+ PWG_JobImpressionsCompleted"=%d", ippGetInteger(job->impressions, 0),
|
|
+ NULL);
|
|
+ else
|
|
+ sd_journal_send("MESSAGE=%s", log_line,
|
|
+ "PRIORITY=%i", log_levels[level],
|
|
+ NULL);
|
|
+
|
|
+ return (1);
|
|
+ }
|
|
+#endif /* HAVE_SYSTEMD_SD_JOURNAL_H */
|
|
return (cupsdWriteErrorLog(level, log_line));
|
|
+ }
|
|
else
|
|
return (1);
|
|
}
|
|
@@ -989,7 +980,7 @@ cupsdLogPage(cupsd_job_t *job, /* I - J
|
|
*bufptr = '\0';
|
|
|
|
#ifdef HAVE_SYSTEMD_SD_JOURNAL_H
|
|
- if (!strcmp(ErrorLog, "syslog"))
|
|
+ if (!strcmp(PageLog, "syslog"))
|
|
{
|
|
static const char * const job_states[] =
|
|
{ /* job-state strings */
|
|
@@ -1186,7 +1177,7 @@ cupsdLogRequest(cupsd_client_t *con, /*
|
|
}
|
|
|
|
#ifdef HAVE_SYSTEMD_SD_JOURNAL_H
|
|
- if (!strcmp(ErrorLog, "syslog"))
|
|
+ if (!strcmp(AccessLog, "syslog"))
|
|
{
|
|
sd_journal_print(LOG_INFO, "REQUEST %s - %s \"%s %s HTTP/%d.%d\" %d " CUPS_LLFMT " %s %s", con->http->hostname, con->username[0] != '\0' ? con->username : "-", states[con->operation], _httpEncodeURI(temp, con->uri, sizeof(temp)), con->http->version / 100, con->http->version % 100, code, CUPS_LLCAST con->bytes, con->request ? ippOpString(con->request->request.op.operation_id) : "-", con->response ? ippErrorString(con->response->request.status.status_code) : "-");
|
|
return (1);
|