Browse Source

Enhance error message

Nick Steyer 1 year ago
parent
commit
341843a944
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Assets/StreetLight/Scripts/PersonManager.cs

+ 1 - 1
Assets/StreetLight/Scripts/PersonManager.cs

@@ -29,7 +29,7 @@ namespace Assets.StreetLight.Scripts
             }
             catch (Exception ex)
             {
-                Debug.LogError($"Could not load homography: {ex.Message}");
+                Debug.LogWarning($"Could not load homography: {ex.Message}. Calculating the unity position of a person will not be possible. (This is expected during calibration.)");
             }
 
             Persons = new ObservableCollection<Person>();