-
Notifications
You must be signed in to change notification settings - Fork 6
/
log.ts
87 lines (78 loc) · 2.91 KB
/
log.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
/*
* Copyright (c) 2021, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { LogService } from '@salesforce/apex-node';
import {
Flags,
SfCommand,
requiredOrgFlagWithDeprecations,
orgApiVersionFlagWithDeprecations,
loglevel,
} from '@salesforce/sf-plugins-core';
import { Connection, Messages } from '@salesforce/core';
import { colorLogs } from '../../../logColorize.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-apex', 'tail');
export default class Log extends SfCommand<void> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly deprecateAliases = true;
public static readonly aliases = ['force:apex:log:tail'];
public static readonly enableJsonFlag = false;
public static readonly flags = {
'target-org': requiredOrgFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
loglevel,
color: Flags.boolean({
char: 'c',
summary: messages.getMessage('flags.color.summary'),
}),
'debug-level': Flags.string({
deprecateAliases: true,
aliases: ['debuglevel'],
char: 'd',
summary: messages.getMessage('flags.debug-level.summary'),
exclusive: ['skip-trace-flag'],
}),
'skip-trace-flag': Flags.boolean({
deprecateAliases: true,
aliases: ['skiptraceflag'],
char: 's',
summary: messages.getMessage('flags.skip-trace-flag.summary'),
}),
};
private color: boolean | undefined;
public async run(): Promise<void> {
const { flags } = await this.parse(Log);
this.color = flags.color;
const conn = flags['target-org'].getConnection(flags['api-version']);
const logService = this.getLogService(conn);
if (!flags['skip-trace-flag']) {
await logService.prepareTraceFlag(flags['debug-level'] ?? '');
}
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-misused-promises
await logService.tail(flags['target-org'], this.logTailer.bind(this));
this.log(messages.getMessage('finishedTailing'));
}
// the colorize function used to be async, but not isn't. Preserving the public method signature
// eslint-disable-next-line @typescript-eslint/require-await
public async logTailer(fullLog: string): Promise<void> {
if (fullLog) {
this.log(this.color ? colorLogs(fullLog) : fullLog);
}
}
/**
* for UT purposes
*
* @param conn : Connection to the org
* @private
*/
// eslint-disable-next-line class-methods-use-this
private getLogService(conn: Connection): LogService {
return new LogService(conn);
}
}