Fix/debug BOREALIS (#2086)

Improved the .dll to catch any and all unspecified exceptions. To avoid .dll crashing. They will now be logged into a .txt file.
Made the .dll's code to be more reusable, and look a bit better. Also removed a few hidden files (header).
Added a few debug logs for BOREALIS, specifically towards new features.
Removed a potential runtime error for scheduling a push without a scheduler.
Tested as functional on local build.
This commit is contained in:
skull132
2017-04-14 13:29:21 +03:00
committed by GitHub
parent f35680ba7a
commit a3516d7069
4 changed files with 211 additions and 101 deletions

View File

@@ -70,6 +70,8 @@
log_debug("ByondPOST POST: Proc error: Too few arguments sent to function.")
if ("2")
log_debug("ByondPOST POST: Proc error: Unable to initialize curl object.")
if ("3")
log_debug("ByondPOST POST: Proc error: General exception caught and logged.")
else
log_debug("ByondPOST POST: Proc error: Unknown error.")
return -1
@@ -120,6 +122,8 @@
log_debug("ByondPOST GET: Proc error: Too few arguments sent to function.")
if ("2")
log_debug("ByondPOST GET: Proc error: Unable to initialize curl object.")
if ("3")
log_debug("ByondPOST GET: Proc error: General exception caught and logged.")
else
log_debug("ByondPOST GET: Proc error: Unknown error.")
return -1