Summary: ^ Reviewed By: passy Differential Revision: D48557327 fbshipit-source-id: 0112dec9a1a7f0afddcc459459a9278bbbeb3fc7
18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
/**
|
|
* 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
|
|
*/
|
|
|
|
import {EnvironmentInfo, Logger, LoggerArgs, NoopLogger} from 'flipper-common';
|
|
|
|
export function initializeLogger(
|
|
_environmentInfo: EnvironmentInfo,
|
|
_args?: LoggerArgs,
|
|
): Logger {
|
|
return new NoopLogger();
|
|
}
|