1 files changed, 8 insertions, 8 deletions
diff --git a/MatrixRoomUtils.Web/Shared/MainLayout.razor b/MatrixRoomUtils.Web/Shared/MainLayout.razor
index 317f9e6..691acbb 100644
--- a/MatrixRoomUtils.Web/Shared/MainLayout.razor
+++ b/MatrixRoomUtils.Web/Shared/MainLayout.razor
@@ -29,14 +29,14 @@
using var hc = new HttpClient();
var hr = await hc.SendAsync(new HttpRequestMessage(HttpMethod.Head, NavigationManager.ToAbsoluteUri("/MRU-BIN.tar.xz").AbsoluteUri));
showDownload = hr.StatusCode == HttpStatusCode.OK;
-
- await LocalStorageWrapper.LoadFromLocalStorage(LocalStorage);
- if (!LocalStorageWrapper.Settings.DeveloperSettings.EnableConsoleLogging) {
- Console.WriteLine("Console logging disabled!");
- var sw = new StringWriter();
- Console.SetOut(sw);
- Console.SetError(sw);
- }
+
+ // TODO: fix console logging toggle
+ // if (!LocalStorageWrapper.Settings.DeveloperSettings.EnableConsoleLogging) {
+ // Console.WriteLine("Console logging disabled!");
+ // var sw = new StringWriter();
+ // Console.SetOut(sw);
+ // Console.SetError(sw);
+ // }
await base.OnInitializedAsync();
}
|