Skip to content

Commit

Permalink
feat(firebase): add support for firebase ErrorLog (#1440)
Browse files Browse the repository at this point in the history
* feat(firebase): add support for firebase ErrorLog

* feat(firebase): add support for firebase ErrorLog
  • Loading branch information
lora-reames authored and ihadeed committed Apr 28, 2017
1 parent 1123299 commit 11dbe42
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/@ionic-native/plugins/firebase/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,14 @@ export class Firebase extends IonicNativePlugin {
@Cordova()
logEvent(type: string, data: any): Promise<any> { return; }

/**
* Log an Error using FirebaseCrash
* @param message {string}
* @return {Promise<any>}
*/
@Cordova()
logError(message: string): Promise<any> { return; }

/**
* Set the name of the current screen in Analytics
* @param name {string} Screen name
Expand Down

0 comments on commit 11dbe42

Please sign in to comment.