Skip to content

Commit

Permalink
Fixe error message
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Cunningham <[email protected]>
  • Loading branch information
digitaldan committed Feb 27, 2019
1 parent 73a7ad3 commit 61d51f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notificationsender/firebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exports.sendNotification = function(registrationIds, message) {
};
firebaseClient.message(registrationIds, data, firebaseOptions, function (result) {
if (result.failure) {
logger.error("openHAB-cloud: GCM send error: " + err);
logger.error("openHAB-cloud: GCM send error: " + JSON.stringify(result));
}
});
});
Expand Down

0 comments on commit 61d51f1

Please sign in to comment.