Skip to content

Commit f290d00

Browse files
committed
style(NODE-4992): comment style
1 parent 7381816 commit f290d00

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/logger.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,18 @@ export const LoggerLevel = Object.freeze({
2929
} as const);
3030

3131
/** @public
32-
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.*/
32+
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.
33+
*/
3334
export type LoggerLevel = typeof LoggerLevel[keyof typeof LoggerLevel];
3435

3536
/** @public
36-
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.*/
37+
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.
38+
*/
3739
export type LoggerFunction = (message?: any, ...optionalParams: any[]) => void;
3840

3941
/** @public
40-
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.*/
42+
* @deprecated The Legacy Logger is deprecated and will be removed in the next major version.
43+
*/
4144
export interface LoggerOptions {
4245
logger?: LoggerFunction;
4346
loggerLevel?: LoggerLevel;

0 commit comments

Comments
 (0)