mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
* Changed azdata to az in azcli extension and resource-deployment, and some arc. Removed user, pass, url from controller connect blade. Commented out tests. Ported over work from old branch. * Changed unit tests, all unit tests passing. Changed parameters to new ones, fixed some Controller Connect issues. * Connect data controller and create dc working. * Changed az back to azdata in necessary places in resource-deployment. * Changed notebook values and added namespace to some params. * Reverted all changes that are not in azcli. Also deleted some unused variables in azcli constants.ts and some tests. * Fixed package.json * Deleted en-us from links, changed az. to azcli.arc in package.json * Addressed PR comments. Co-authored-by: Candice Ye <canye@microsoft.com>
26 lines
769 B
TypeScript
26 lines
769 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import * as loc from '../localizedConstants';
|
|
|
|
export class Log {
|
|
private _output: vscode.OutputChannel;
|
|
|
|
constructor() {
|
|
this._output = vscode.window.createOutputChannel(loc.az);
|
|
}
|
|
|
|
log(msg: string): void {
|
|
this._output.appendLine(`[${new Date().toISOString()}] ${msg}`);
|
|
}
|
|
|
|
show(): void {
|
|
this._output.show(true);
|
|
}
|
|
}
|
|
const Logger = new Log();
|
|
export default Logger;
|