mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-04-26 23:05:08 +08:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
/* Logs messages to console with the [CodePush] prefix */
|
|
function log(message) {
|
|
console.log(`[CodePush] ${message}`);
|
|
}
|
|
|
|
module.exports = log;
|