Skip to content

Commit

Permalink
Remove storyboard logging I forgot about
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Mar 2, 2024
1 parent 415a2d1 commit 797e59d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Logging;

namespace fluXis.Game.Storyboards.Drawables;

Expand Down Expand Up @@ -108,7 +107,6 @@ protected override void Update()
while (actions.Count > 0 && actions.First().Time <= Time.Current)
{
var action = actions.First();
Logger.LogPrint($"Action at {action.Time} is being executed at {Time.Current}");
action.Action?.Invoke();
actions.Remove(action);
}
Expand Down

0 comments on commit 797e59d

Please sign in to comment.