diff --git a/BTCPayServer/Views/Server/Logs.cshtml b/BTCPayServer/Views/Server/Logs.cshtml
index 9df0a193a..6f5850a23 100644
--- a/BTCPayServer/Views/Server/Logs.cshtml
+++ b/BTCPayServer/Views/Server/Logs.cshtml
@@ -5,34 +5,40 @@
-
-
- @foreach (var file in Model.LogFiles)
- {
- -
- @file.Name
-
- }
+
+ @foreach (var file in Model.LogFiles)
+ {
-
- @if (Model.LogFileOffset > 0)
- {
- <<
- }
- Showing @Model.LogFileOffset - (@(Model.LogFileOffset+Model.LogFiles.Count)) of @Model.LogFileCount
- @if ((Model.LogFileOffset+ Model.LogFiles.Count) < Model.LogFileCount)
- {
- >>
- }
+ @file.Name
+
+ }
+
+
+
+
+@if (!string.IsNullOrEmpty(Model.Log))
+{
+
+
+
+
+
@Model.Log
- }
+}
-
@section Scripts {
@await Html.PartialAsync("_ValidationScriptsPartial")