react-native/Libraries/Utilities/RCTLog.js

50 lines
1.1 KiB
JavaScript
Raw Normal View History

2015-01-30 01:10:49 +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
* @flow
2015-01-30 01:10:49 +00:00
*/
'use strict';
const invariant = require('fbjs/lib/invariant');
2015-01-30 01:10:49 +00:00
const levelsMap = {
2015-01-30 01:10:49 +00:00
log: 'log',
info: 'info',
warn: 'warn',
error: 'error',
fatal: 'error',
2015-01-30 01:10:49 +00:00
};
class RCTLog {
// level one of log, info, warn, error, mustfix
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)
);
console[logFn](...args);
2015-01-30 01:10:49 +00:00
return true;
}
}
module.exports = RCTLog;