Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7DF56200C48 for ; Thu, 6 Apr 2017 15:44:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7C84A160B84; Thu, 6 Apr 2017 13:44:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C47EF160B83 for ; Thu, 6 Apr 2017 15:44:05 +0200 (CEST) Received: (qmail 46557 invoked by uid 500); 6 Apr 2017 13:44:05 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 46548 invoked by uid 99); 6 Apr 2017 13:44:04 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Apr 2017 13:44:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D467CDFF73; Thu, 6 Apr 2017 13:44:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alsorokin@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cordova-plugin-battery-status git commit: CB-12639 (all) Tests: console.err() -> console.error() Date: Thu, 6 Apr 2017 13:44:04 +0000 (UTC) archived-at: Thu, 06 Apr 2017 13:44:06 -0000 Repository: cordova-plugin-battery-status Updated Branches: refs/heads/master af669c817 -> 86b6be524 CB-12639 (all) Tests: console.err() -> console.error() Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status/commit/86b6be52 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status/tree/86b6be52 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status/diff/86b6be52 Branch: refs/heads/master Commit: 86b6be5249873450600feb76415ef2511275dad7 Parents: af669c8 Author: Alexander Sorokin Authored: Thu Apr 6 16:05:26 2017 +0300 Committer: Alexander Sorokin Committed: Thu Apr 6 16:05:26 2017 +0300 ---------------------------------------------------------------------- tests/tests.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status/blob/86b6be52/tests/tests.js ---------------------------------------------------------------------- diff --git a/tests/tests.js b/tests/tests.js index 428208f..38571a0 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -54,7 +54,7 @@ exports.defineAutoTests = function () { window.removeEventListener("batterystatus", onEvent, false); } catch (e) { - console.err('Error removing batterystatus event listener: ' + e); + console.error('Error removing batterystatus event listener: ' + e); } } }); @@ -90,7 +90,7 @@ exports.defineAutoTests = function () { window.removeEventListener("batterylow", onEvent, false); } catch (e) { - console.err('Error removing batterylow event listener: ' + e); + console.error('Error removing batterylow event listener: ' + e); } } }); @@ -209,7 +209,7 @@ exports.defineAutoTests = function () { window.removeEventListener("batterycritical", onEvent, false); } catch (e) { - console.err('Error removing batterycritical event listener: ' + e); + console.error('Error removing batterycritical event listener: ' + e); } } }); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org