From d318594f6ddbfed89771d23f4b69fd4bb95adaec Mon Sep 17 00:00:00 2001 From: icedream Date: Thu, 8 May 2014 13:52:52 +0200 Subject: [PATCH] Show requested filenames in log --- src/npfile/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/npfile/Program.cs b/src/npfile/Program.cs index b33e14c..c68fe4a 100644 --- a/src/npfile/Program.cs +++ b/src/npfile/Program.cs @@ -148,6 +148,7 @@ namespace NPSharp.CommandLine.File return Task.Factory.GetCompleted(); } + _log.InfoFormat("Requesting user file {0}", uri); var task = _np.GetUserFile(uri); try { @@ -193,6 +194,7 @@ namespace NPSharp.CommandLine.File return Task.Factory.GetCompleted(); } + _log.InfoFormat("Requesting publisher file {0}", uri); var task = _np.GetPublisherFile(uri); try {