Skip to content

Commit

Permalink
wm/win: make animation logs less spammy
Browse files Browse the repository at this point in the history
Signed-off-by: Yuxuan Shui <[email protected]>
  • Loading branch information
yshui committed Jun 11, 2024
1 parent a71d38a commit 7befeff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/event.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "picom.h"
#include "region.h"
#include "utils/dynarr.h"
#include "utils/misc.h"
#include "wm/defs.h"
#include "wm/wm.h"
#include "x.h"
Expand Down
4 changes: 2 additions & 2 deletions src/wm/win.c
Original file line number Diff line number Diff line change
Expand Up @@ -2246,8 +2246,8 @@ bool win_process_animation_and_state_change(struct session *ps, struct managed_w
if (w->running_animation == NULL) {
return false;
}
log_debug("Advance animation for %#010x (%s) %f seconds", w->base.id,
w->name, delta_t);
log_verbose("Advance animation for %#010x (%s) %f seconds", w->base.id,
w->name, delta_t);
if (!script_instance_is_finished(w->running_animation)) {
w->running_animation->elapsed += delta_t;
auto result =
Expand Down

0 comments on commit 7befeff

Please sign in to comment.