Skip to content

Commit

Permalink
Change azdata output channel to Azure Data CLI (#12545)
Browse files Browse the repository at this point in the history
(cherry picked from commit cdd80c6)

Co-authored-by: chgagnon <chgagnon@microsoft.com>
  • Loading branch information
chlafreniere and Charles-Gagnon authored Sep 22, 2020
1 parent 41ace44 commit fe3d1ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/azdata/src/common/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
*--------------------------------------------------------------------------------------------*/

import * as vscode from 'vscode';
import * as loc from '../localizedConstants';

export class Log {
private _output: vscode.OutputChannel;

constructor() {
this._output = vscode.window.createOutputChannel('azdata');
this._output = vscode.window.createOutputChannel(loc.azdata);
}

log(msg: string): void {
Expand Down
1 change: 1 addition & 0 deletions extensions/azdata/src/localizedConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { getErrorMessage } from './common/utils';
import { azdataConfigSection, azdataInstallKey, azdataUpdateKey } from './constants';
const localize = nls.loadMessageBundle();

export const azdata = localize('azdata.azdata', "Azure Data CLI");
export const searchingForAzdata = localize('azdata.searchingForAzdata', "Searching for existing Azure Data CLI installation...");
export const foundExistingAzdata = (path: string, version: string): string => localize('azdata.foundExistingAzdata', "Found existing Azure Data CLI installation of version (v{0}) at path:{1}", version, path);

Expand Down

0 comments on commit fe3d1ff

Please sign in to comment.