Skip to content

Commit

Permalink
removed debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Feb 2, 2024
1 parent a6e7584 commit 97d4060
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,12 @@ public void SetAngularVelocityRange(AngularVelocityRange angRange)
/// <param name="changeResult">The updated sensor data</param>
protected override void RaiseEventsAndNotify(IChangeResult<(Acceleration3D? Acceleration3D, AngularVelocity3D? AngularVelocity3D, Units.Temperature? Temperature)> changeResult)
{
Resolver.Log.Info($"RaiseAndNotify");

if (changeResult.New.AngularVelocity3D is { } angular)
{
_angularVelocityHandlers?.Invoke(this, new ChangeResult<AngularVelocity3D>(angular, changeResult.Old?.AngularVelocity3D));
}
if (changeResult.New.Acceleration3D is { } accel)
{
Resolver.Log.Info($"RaiseAndNotify Acceleration");
_accelerationHandlers?.Invoke(this, new ChangeResult<Acceleration3D>(accel, changeResult.Old?.Acceleration3D));
}
if (changeResult.New.Temperature is { } temp)
Expand Down

0 comments on commit 97d4060

Please sign in to comment.