2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* @providesModule RCTLog
|
2015-03-24 16:26:16 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2017-03-08 03:33:44 +00:00
|
|
|
const invariant = require('fbjs/lib/invariant');
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2017-03-08 03:33:44 +00:00
|
|
|
const levelsMap = {
|
2015-01-30 01:10:49 +00:00
|
|
|
log: 'log',
|
|
|
|
info: 'info',
|
|
|
|
warn: 'warn',
|
|
|
|
error: 'error',
|
2015-11-10 12:50:45 +00:00
|
|
|
fatal: 'error',
|
2015-01-30 01:10:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RCTLog {
|
|
|
|
// level one of log, info, warn, error, mustfix
|
2017-03-08 03:33:44 +00:00
|
|
|
static logIfNoNativeHook(...args) {
|
|
|
|
if (typeof global.nativeLoggingHook === 'undefined') {
|
|
|
|
// We already printed in xcode, so only log here if using a js debugger
|
|
|
|
RCTLog.logToConsole(...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log to console regardless of nativeLoggingHook
|
|
|
|
static logToConsole(level, ...args) {
|
|
|
|
const logFn = levelsMap[level];
|
2015-01-30 01:10:49 +00:00
|
|
|
invariant(
|
|
|
|
logFn,
|
|
|
|
'Level "' + level + '" not one of ' + Object.keys(levelsMap)
|
|
|
|
);
|
2017-03-08 03:33:44 +00:00
|
|
|
|
|
|
|
console[logFn](...args);
|
2016-12-19 21:54:49 +00:00
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = RCTLog;
|