Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2020-11-22 19:43:14 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-11-22 20:05:25 +0300
commit31a4eab7e736b8a4c76ee8f8a359fc3bb3aa2909 (patch)
tree9846729aaceb6eae5a0218939f310760f42a73df /Duplicati/Library
parent8b1d2cfafa4eaaa4d0c890d1e3c630984e653c89 (diff)
Fix casing in log entry.
Diffstat (limited to 'Duplicati/Library')
-rw-r--r--Duplicati/Library/Main/Operation/RestoreHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Library/Main/Operation/RestoreHandler.cs b/Duplicati/Library/Main/Operation/RestoreHandler.cs
index 8c101b5a5..be2c251f1 100644
--- a/Duplicati/Library/Main/Operation/RestoreHandler.cs
+++ b/Duplicati/Library/Main/Operation/RestoreHandler.cs
@@ -415,7 +415,7 @@ namespace Duplicati.Library.Main.Operation
// Restore empty files. They might not have any blocks so don't appear in any volume.
foreach (var file in database.GetFilesToRestore(true).Where(item => item.Length == 0))
{
- Logging.Log.WriteProfilingMessage(LOGTAG, "RestoreFile", "restoring empty file \"{0}\"", file.Path);
+ Logging.Log.WriteProfilingMessage(LOGTAG, "RestoreFile", "Restoring empty file \"{0}\"", file.Path);
try
{