diff options
Diffstat (limited to 'src/ng/log.js')
| -rw-r--r-- | src/ng/log.js | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ng/log.js b/src/ng/log.js index 2a58d442..e0a1aec3 100644 --- a/src/ng/log.js +++ b/src/ng/log.js @@ -74,23 +74,23 @@ function $LogProvider(){        /**         * @ngdoc method -       * @name ng.$log#warn +       * @name ng.$log#info         * @methodOf ng.$log         *         * @description -       * Write a warning message +       * Write an information message         */ -      warn: consoleLog('warn'), +      info: consoleLog('info'),        /**         * @ngdoc method -       * @name ng.$log#info +       * @name ng.$log#warn         * @methodOf ng.$log         *         * @description -       * Write an information message +       * Write a warning message         */ -      info: consoleLog('info'), +      warn: consoleLog('warn'),        /**         * @ngdoc method  | 
