mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1cf4c84ba0
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/49262 Changelog: [General][Breaking] Deep imports into `react-native/virtualized-lists` with require syntax may need to be appended with `.default` Reviewed By: huntie Differential Revision: D69308532 fbshipit-source-id: 6de15d46e0931616bc9849edbccb7cf745e15dd5
21 lines
441 B
JavaScript
21 lines
441 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* Intentional info-level logging for clear separation from ad-hoc console debug logging.
|
|
*/
|
|
function infoLog(...args: Array<mixed>): void {
|
|
return console.log(...args);
|
|
}
|
|
|
|
export default infoLog;
|