2016-05-17 12:42:14 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08: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 12:42:14 -07:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2016-05-17 12:42:14 -07:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2016-05-17 12:42:14 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Intentional info-level logging for clear separation from ad-hoc console debug logging.
|
|
|
|
*/
|
|
|
|
function infoLog(...args) {
|
2018-01-08 16:54:56 -08:00
|
|
|
return console.log(...args);
|
2016-05-17 12:42:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = infoLog;
|