Skip to content

Commit

Permalink
Updated the debug string used in the FormStart() private method of th…
Browse files Browse the repository at this point in the history
…e FrmDnWrk class.
  • Loading branch information
xvitaly committed Dec 10, 2024
1 parent 8aed1fa commit 957069d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/srcrepair/DebugStrings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/srcrepair/DebugStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@
<data name="AppDbgExDnTaskError" xml:space="preserve">
<value>Exception while downloading the "{0}" file from the remote server to the local file "{1}".</value>
</data>
<data name="AppDbgExDnTaskStart" xml:space="preserve">
<value>Exception while trying to start downloading the "{0}" file from the remote server to the local file "{1}".</value>
</data>
<data name="AppDbgExDnVerifyResult" xml:space="preserve">
<value>Exception while trying to verify the downloaded file "{0}".</value>
</data>
<data name="AppDbgExDnWrkTask" xml:space="preserve">
<value>Exception while trying to start downloading file "{0}" to "{1}".</value>
</data>
<data name="AppDbgExEditCfg" xml:space="preserve">
<value>Exception on trying to load the installed FPS-config into the Config Editor.</value>
</data>
Expand Down
2 changes: 1 addition & 1 deletion src/srcrepair/FrmDnWrk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void FormStart()
}
catch (Exception Ex)
{
Logger.Warn(Ex, DebugStrings.AppDbgExDnWrkTask, RemoteURI, LocalFile);
Logger.Warn(Ex, DebugStrings.AppDbgExDnTaskStart, RemoteURI, LocalFile);
}
}

Expand Down

0 comments on commit 957069d

Please sign in to comment.