Skip to content

Commit

Permalink
small log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RijadComor committed Jul 16, 2024
1 parent 954b786 commit 670fc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConnectorAPI.EVS.IPD-VIA/EvsIpdViaElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public TimeSpan Timeout
{
var timeoutInSeconds = element.GetStandaloneParameter<double?>(EvsIpdViaProtocol.InterAppTimeout) ?? throw new NullReferenceException("InterApp Timeout value is null.");
timeout = TimeSpan.FromSeconds(timeoutInSeconds.GetValue().Value);
Log(nameof(EvsIpdViaElement), nameof(Timeout), $"Timeout in seconds: {timeoutInSeconds} | Timespan: {timeout}");
Log(nameof(EvsIpdViaElement), nameof(Timeout), $"Timeout timespan: {timeout}");
return (TimeSpan)timeout;
}
catch (Exception e)
Expand Down

0 comments on commit 670fc94

Please sign in to comment.