feat: implemented logging by key with Core

- updated log methods in a few places
This commit is contained in:
Nick Genovese
2024-11-05 13:30:01 -05:00
parent ffed2dea8a
commit 37c1a6c7dd
19 changed files with 144 additions and 183 deletions

View File

@@ -149,7 +149,7 @@ namespace PepperDash.Essentials.Core
}
catch (Exception ex)
{
Debug.LogMessage(ex, "Exception occurred while creating device {0}: {1}", null, dc.Key, ex.Message);
Debug.LogError(ex, "Exception occurred while creating device {0}: {1}", dc.Key, ex.Message);
return null;
}
}