-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[0.76] Use Metro terminal reporter for dev-middleware logs (#46646)
- Loading branch information
Showing
2 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
packages/community-cli-plugin/src/utils/createDevMiddlewareLogger.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* 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. | ||
* | ||
* @flow strict-local | ||
* @format | ||
* @oncall react_native | ||
*/ | ||
|
||
import type TerminalReporter from 'metro/src/lib/TerminalReporter'; | ||
|
||
type LoggerFn = (...message: $ReadOnlyArray<string>) => void; | ||
|
||
/** | ||
* Create a dev-middleware logger object that will emit logs via Metro's | ||
* terminal reporter. | ||
*/ | ||
export default function createDevMiddlewareLogger( | ||
reporter: TerminalReporter, | ||
): $ReadOnly<{ | ||
info: LoggerFn, | ||
error: LoggerFn, | ||
warn: LoggerFn, | ||
}> { | ||
return { | ||
info: makeLogger(reporter, 'info'), | ||
warn: makeLogger(reporter, 'warn'), | ||
error: makeLogger(reporter, 'error'), | ||
}; | ||
} | ||
|
||
function makeLogger( | ||
reporter: TerminalReporter, | ||
level: 'info' | 'warn' | 'error', | ||
): LoggerFn { | ||
return (...data: Array<mixed>) => | ||
reporter.update({ | ||
type: 'unstable_server_log', | ||
level, | ||
data, | ||
}); | ||
} |