From 2d68ca5270c93bfb8b86107594db2c1c5bd90415 Mon Sep 17 00:00:00 2001 From: rafael-aero Date: Wed, 1 Sep 2021 18:29:20 +0200 Subject: [PATCH] Fix LogError call --- ElectronNET.API/BridgeConnector.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElectronNET.API/BridgeConnector.cs b/ElectronNET.API/BridgeConnector.cs index c778970..8a3a792 100644 --- a/ElectronNET.API/BridgeConnector.cs +++ b/ElectronNET.API/BridgeConnector.cs @@ -212,7 +212,7 @@ namespace ElectronNET.API } catch (Exception E) { - Logger.LogError(E, "Error running handler for event {0}", eventString); + LogError(E, "Error running handler for event {0}", eventString); } }); } @@ -235,7 +235,7 @@ namespace ElectronNET.API } catch(Exception E) { - Logger.LogError(E, "Error running handler for event {0}", eventString); + LogError(E, "Error running handler for event {0}", eventString); } }); }