Fix Logger not showing url when exception occurs (#7782)

This commit is contained in:
Julián Alazorza
2017-07-27 21:18:49 +02:00
committed by Sébastien Ros
parent db8e06e7e8
commit be577ee486

View File

@@ -172,7 +172,7 @@ namespace Orchard.Warmup.Services {
} }
} }
catch (Exception e) { catch (Exception e) {
Logger.Error(e, "Could not extract warmup page content for: ", url); Logger.Error(e, "Could not extract warmup page content for: {0}", url);
} }
} }
} }