diff --git a/FileEmulationFramework.Lib/IO/MultiStream.cs b/FileEmulationFramework.Lib/IO/MultiStream.cs index ceace26..838c974 100644 --- a/FileEmulationFramework.Lib/IO/MultiStream.cs +++ b/FileEmulationFramework.Lib/IO/MultiStream.cs @@ -73,7 +73,7 @@ public override int Read(Span buffer) var index = _offsetRangeSelector.Select(Position); if (index == -1) { - _log?.Warning($"[{nameof(MultiStream)}] Cannot read from this position!! Position: {{0}}, Length: {{1}}. This is not necessarily an error, some implementations of e.g. CopyTo might cause this; just be weary of this message.", Position, Length); + _log?.Warning($"[{nameof(MultiStream)}] Cannot read from this position!! Position: {{0}}, Length: {{1}}. This is not necessarily an error, some implementations of e.g. CopyTo might cause this; just be wary of this message.", Position, Length); return 0; }