refactor: fix missing }

This commit is contained in:
Andrew Welker
2022-02-09 10:07:59 -07:00
parent b64aa97a3f
commit bbbd6d2290

View File

@@ -336,12 +336,13 @@ namespace PepperDash.Core
Connect();
}, AutoReconnectIntervalMs);
Debug.Console(1, this, Debug.ErrorLogLevel.Notice, "Attempting connection in {0} seconds",
(float)(AutoReconnectIntervalMs / 1000));
(float) (AutoReconnectIntervalMs/1000));
}
else
{
Debug.Console(1, this, "{0} second reconnect cycle running",
(float)(AutoReconnectIntervalMs / 1000));
(float) (AutoReconnectIntervalMs/1000));
}
}
}