Skip to content

Commit 27d0ad6

Browse files
committed
Merge pull request #946 from zxc122333/patch-1
fix(logging): correct a location that was using log.info.log which is a non-existent function
2 parents 730b32f + 345993a commit 27d0ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ionic/login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ LoginTask.login = function login(argv) {
3232
return Login.requestLogIn(loginInfo.email, loginInfo.password, true);
3333
})
3434
.then(function(cookieJar) {
35-
log.info.log('Logged in! :)'.green);
35+
log.info('Logged in! :)'.green);
3636
return cookieJar;
3737
})
3838
.catch(function(ex) {

0 commit comments

Comments
 (0)