Files
react-native-code-push/logging.js
danielbasedow 1a49e760cb work on issues from comments
-remove restartAllowed
-add logging to RestartManager
-keep track of pending restarts
2016-05-23 21:59:44 +02:00

7 lines
147 B
JavaScript

/* Logs messages to console with the [CodePush] prefix */
function log(message) {
console.log(`[CodePush] ${message}`);
}
module.exports = log;