mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
fix for sensitive text in output message (#19071)
This commit is contained in:
@@ -50,9 +50,9 @@ export class ShellExecutionHelper {
|
|||||||
// Add listeners to print stdout and stderr and exit code
|
// Add listeners to print stdout and stderr and exit code
|
||||||
void child.on('exit', (code: number | null, signal: string | null) => {
|
void child.on('exit', (code: number | null, signal: string | null) => {
|
||||||
if (code !== null) {
|
if (code !== null) {
|
||||||
this._outputChannel.appendLine(localize('sqlDatabaseProjects.RunStreamedCommand.ExitedWithCode', " >>> {0} … exited with code: {1}", command, code));
|
this._outputChannel.appendLine(localize('sqlDatabaseProjects.RunStreamedCommand.ExitedWithCode', " >>> {0} … exited with code: {1}", cmdOutputMessage, code));
|
||||||
} else {
|
} else {
|
||||||
this._outputChannel.appendLine(localize('sqlDatabaseProjects.RunStreamedCommand.ExitedWithSignal', " >>> {0} … exited with signal: {1}", command, signal));
|
this._outputChannel.appendLine(localize('sqlDatabaseProjects.RunStreamedCommand.ExitedWithSignal', " >>> {0} … exited with signal: {1}", cmdOutputMessage, signal));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user