From 9a47fc4de00ca1435d8eb68cad6fe8e61122f3b0 Mon Sep 17 00:00:00 2001 From: Steve Kennedy Date: Tue, 11 Dec 2018 02:46:14 -0600 Subject: [PATCH] fix(angular): remove rogue console debug message (#16530) Fixes #16529 --- angular/src/providers/nav-controller.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/angular/src/providers/nav-controller.ts b/angular/src/providers/nav-controller.ts index 3058d25037..c2c48b39c6 100644 --- a/angular/src/providers/nav-controller.ts +++ b/angular/src/providers/nav-controller.ts @@ -83,7 +83,6 @@ export class NavController { if (this.direction === 'auto') { direction = this.guessDirection; animated = this.guessAnimation; - console.debug('[nav-controller] guessed nav direction', direction, 'animated', animated); } else { animated = this.animated; direction = this.direction;