Path: blob/main/extensions/copilot/src/extension/chatSessions/copilotcli/node/logger.ts
13405 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { ILogService } from '../../../../platform/log/common/logService';67export function getCopilotLogger(logService: ILogService) {8return {9isDebug: () => false,10debug: (msg: string) => logService.debug(msg),11log: (msg: string) => logService.trace(msg),12info: (msg: string) => logService.info(msg),13notice: (msg: string | Error) => logService.info(typeof msg === 'string' ? msg : msg.message),14warning: (msg: string | Error) => logService.warn(typeof msg === 'string' ? msg : msg.message),15error: (msg: string | Error) => logService.error(typeof msg === 'string' ? msg : msg.message),16startGroup: () => { },17endGroup: () => { }18};19}202122