Skip to content

Commit

Permalink
Add missing fileNameWithLine
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Dec 15, 2024
1 parent 9a5d156 commit 9aab33b
Showing 1 changed file with 2 additions and 21 deletions.
23 changes: 2 additions & 21 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface IPrettyLogStyles {
dateIsoStr?: TStyle;
logLevelName?: TStyle;
fileName?: TStyle;
fileNameWithLine?: TStyle;
filePath?: TStyle;
fileLine?: TStyle;
filePathWithLine?: TStyle;
Expand Down Expand Up @@ -82,27 +83,7 @@ export interface ISettings<LogObj> extends ISettingsParam<LogObj> {
prettyErrorLoggerNameDelimiter: string;
stylePrettyLogs: boolean;
prettyLogTimeZone: "UTC" | "local";
prettyLogStyles: {
yyyy?: TStyle;
mm?: TStyle;
dd?: TStyle;
hh?: TStyle;
MM?: TStyle;
ss?: TStyle;
ms?: TStyle;
dateIsoStr?: TStyle;
logLevelName?: TStyle;
fileName?: TStyle;
fileNameWithLine?: TStyle;
filePath?: TStyle;
fileLine?: TStyle;
filePathWithLine?: TStyle;
name?: TStyle;
nameWithDelimiterPrefix?: TStyle;
nameWithDelimiterSuffix?: TStyle;
errorName?: TStyle;
errorMessage?: TStyle;
};
prettyLogStyles: IPrettyLogStyles;
prettyInspectOptions: InspectOptions;
metaProperty: string;
maskPlaceholder: string;
Expand Down

0 comments on commit 9aab33b

Please sign in to comment.