2016-05-17 19:42:14 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-05-17 19:42:14 +00:00
|
|
|
*
|
|
|
|
* @providesModule infoLog
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Intentional info-level logging for clear separation from ad-hoc console debug logging.
|
|
|
|
*/
|
|
|
|
function infoLog(...args) {
|
2018-01-09 00:54:56 +00:00
|
|
|
return console.log(...args);
|
2016-05-17 19:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = infoLog;
|