forked from megahertz/electron-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-log.d.ts
351 lines (288 loc) · 6.75 KB
/
electron-log.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
export type ILogLevel = "error" | "warn" | "info" | "verbose" | "debug" |
"silly";
export type ILevelOption = ILogLevel | false;
export type ILevels = Array<ILogLevel | string>;
export type IFormat = (msg: ILogMessage) => void;
export type IFOpenFlags = "r" | "r+" | "rs+" | "w" | "wx" | "w+" | "wx+" |
"a" | "ax" | "a+" | "ax+";
export type IHook = (
msg: ILogMessage,
selectedTransports?: ITransports,
) => ILogMessage | false;
export interface IVariables {
[name: string]: any;
}
export interface ILogMessage {
/**
* Any arguments passed to a log function
*/
data: any[];
/**
* When the log entry was created
*/
date: Date;
/**
* From error to silly
*/
level: ILogLevel;
/**
* CSS like strings, eg ["color: red"]
*/
styles: string[];
/**
* Variables used by formatter
*/
variables?: IVariables;
}
export declare interface ITransport {
(msg: ILogMessage): void;
/**
* Messages with level lower than will be dropped
*/
level: ILevelOption;
}
export interface IConsoleTransport extends ITransport {
/**
* String template of function for message serialization
*/
format: IFormat | string;
/**
* Use styles even if TTY isn't attached
*/
forceStyles: boolean;
}
export interface IFileTransport extends ITransport {
/**
* Determines a location of log file, something like
* ~/.config/<app name>/log.log depending on OS. By default electron-log
* reads this value from name or productName value in package.json. In most
* cases you should keep a default value
*/
appName?: string;
/**
* Function which is called on log rotation. You can override it if you need
* custom log rotation behavior. This function should remove old file
* synchronously
*/
archiveLog: (oldLogPath: string) => void;
/**
* How much bytes were written since transport initialization
*/
bytesWritten: number;
/**
* The full log file path. I can recommend to change this value only if
* you strongly understand what are you doing. If set, appName and fileName
* options are ignored
*/
file?: string;
/**
* Filename without path, log.log by default
*/
fileName: string;
/**
* String template of function for message serialization
*/
format: IFormat | string;
/**
* Maximum size of log file in bytes, 1048576 (1mb) by default. When a log
* file exceeds this limit, it will be moved to log.old.log file and the
* current file will be cleared. You can set it to 0 to disable rotation
*/
maxSize: number;
/**
* Whether to write a log file synchronously. Default to true
*/
sync: boolean;
/**
* Options used when writing a file
*/
writeOptions?: {
/**
* Default 'a'
*/
flag?: IFOpenFlags;
/**
* Default 0666
*/
mode?: number;
/**
* Default 'utf8'
*/
encoding?: string;
};
/**
* Clear the current log file
*/
clear(): void;
/**
* Return full path of the current log file
*/
findLogPath(appName?: string, fileName?: string): string;
/**
* In most cases, you don't need to call it manually. Try to call only if
* you change appName, file or fileName property, but it has no effect.
*/
init(): void;
}
export interface IRemoteTransport extends ITransport {
/**
* Client information which will be sent in each request together with
* a message body
*/
client?: object;
/**
* How deep to serialize complex objects
*/
depth?: number;
/**
* Server URL
*/
url: string;
}
declare interface ITransports {
/**
* Writes logs to console
*/
console: IConsoleTransport;
/**
* Writes logs to a file
*/
file: IFileTransport;
/**
* When logging inside renderer process, it shows log in application console
* too. This transport can impact on performance, so it's disabled by default
* for packaged application.
*/
mainConsole: ITransport | null;
/**
* Sends a JSON POST request with ILogMessage in the body to the specified url
*/
remote: IRemoteTransport;
/**
* When logging inside main process, it shows log in DevTools console too.
* This transport can impact on performance, so it's disabled by default for
* packaged application
*/
rendererConsole: ITransport | null;
[key: string]: ITransport | null;
}
declare interface ICatchErrorsOptions {
/**
* Default true for the main process. Set it to false to prevent showing a
* default electron error dialog
*/
showDialog?: boolean;
/**
* Attach a custom error handler. If the handler returns false, this error
* will not be processed
*/
onError?(error: Error): void;
}
declare interface ICatchErrorsResult {
/**
* Stop catching errors
*/
stop(): void;
}
declare interface IElectronLog {
/**
* Transport instances
*/
transports: ITransports;
/**
* Array with all attached hooks
*/
hooks: IHook[];
/**
* Array with all available levels
*/
levels: ILevels;
/**
* Variables used by formatters
*/
variables: IVariables;
/**
* Catch and log unhandled errors/rejected promises
*/
catchErrors(options?: ICatchErrorsOptions): ICatchErrorsResult;
/**
* Log an error message
*/
error(...params: any[]): void;
/**
* Log a warning message
*/
warn(...params: any[]): void;
/**
* Log an informational message
*/
info(...params: any[]): void;
/**
* Log a verbose message
*/
verbose(...params: any[]): void;
/**
* Log a debug message
*/
debug(...params: any[]): void;
/**
* Log a silly message
*/
silly(...params: any[]): void;
/**
* Shortcut to info
*/
log(...params: any[]): void;
}
/**
* Transport instances
*/
export declare const transports: ITransports;
/**
* Array with all attached hooks
*/
export declare const hooks: IHook[];
/**
* Array with all available levels
*/
export declare const levels: ILevels;
/**
* Variables used by formatters
*/
export declare const variables: IVariables;
/**
* Catch and log unhandled errors/rejected promises
*/
export declare function catchErrors(
options?: ICatchErrorsOptions,
): ICatchErrorsResult;
/**
* Log an error message
*/
export declare function error(...params: any[]): void;
/**
* Log a warning message
*/
export declare function warn(...params: any[]): void;
/**
* Log an informational message
*/
export declare function info(...params: any[]): void;
/**
* Log a verbose message
*/
export declare function verbose(...params: any[]): void;
/**
* Log a debug message
*/
export declare function debug(...params: any[]): void;
/**
* Log a silly message
*/
export declare function silly(...params: any[]): void;
/**
* Shortcut to info
*/
export declare function log(...params: any[]): void;
declare const _d: IElectronLog;
export default _d;