FBLogger for flipper-server-core

Summary: ^

Reviewed By: passy

Differential Revision: D48557327

fbshipit-source-id: 0112dec9a1a7f0afddcc459459a9278bbbeb3fc7
This commit is contained in:
Lorenzo Blasa
2023-08-24 06:18:39 -07:00
committed by Facebook GitHub Bot
parent 15271ea911
commit 87bf73f1d5

View File

@@ -0,0 +1,17 @@
/**
* 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();
}