Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Reduce JS log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Feb 2, 2016
1 parent 3f8ad78 commit a6d815d
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -229,7 +229,7 @@ public void onKeyShortcut(KeyShortcutEvent event) {
}).build();
register(cancelAttentionShortcut);

Log.info("creating attention timer");
Log.debug("creating attention timer");
attentionTimer = timers.create(new TimedAction() {
@Override
public void run() {
Expand Down Expand Up @@ -276,7 +276,8 @@ public void setContextActive(ShortcutContext context, boolean active) {
ensureActiveContexts().add(context);
} else {
if (context == ShortcutContext.Application) {
Log.warn("set global shortcut context inactive.");
// this may happen when activating modal context
Log.debug("disabling global shortcut context.");
}
ensureActiveContexts().remove(context);
}
Expand Down

0 comments on commit a6d815d

Please sign in to comment.