Path: blob/main/src/vs/workbench/contrib/notebook/common/notebookLoggingService.ts
3296 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 { createDecorator } from '../../../../platform/instantiation/common/instantiation.js';67export const INotebookLoggingService = createDecorator<INotebookLoggingService>('INotebookLoggingService');89export interface INotebookLoggingService {10readonly _serviceBrand: undefined;11info(category: string, output: string): void;12warn(category: string, output: string): void;13error(category: string, output: string): void;14debug(category: string, output: string): void;15}161718