From 832644182726d8eefd5e795b31c889df39a7c354 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 2 Mar 2010 13:55:10 +0100 Subject: [PATCH] Tell request URI on 404 HTTP response --- src/soap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soap.c b/src/soap.c index e8f9b81..dfa5602 100644 --- a/src/soap.c +++ b/src/soap.c @@ -561,8 +561,8 @@ _hidden isds_error soap(struct isds_ctx *context, const char *file, break; case 404: err = IE_HTTP; - isds_log_message(context, - _("Code 404: Document not found on server")); + isds_printf_message(context, + _("Code 404: Document (%s) not found on server"), url); goto leave; break; /* 500 should return standard SOAP message */ -- 2.11.4.GIT