mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-07 01:35:36 -05:00
Fixes logging to clean up on extension deactivate
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
'use strict';
|
||||
import { Commands } from './commands';
|
||||
import { OutputLevel } from './logger';
|
||||
|
||||
export type BlameAnnotationStyle = 'compact' | 'expanded' | 'trailing';
|
||||
export const BlameAnnotationStyle = {
|
||||
@@ -90,13 +91,6 @@ export interface IStatusBarConfig {
|
||||
command: StatusBarCommand;
|
||||
}
|
||||
|
||||
export type OutputLevel = 'silent' | 'errors' | 'verbose';
|
||||
export const OutputLevel = {
|
||||
Silent: 'silent' as OutputLevel,
|
||||
Errors: 'errors' as OutputLevel,
|
||||
Verbose: 'verbose' as OutputLevel
|
||||
};
|
||||
|
||||
export interface IAdvancedConfig {
|
||||
caching: {
|
||||
enabled: boolean;
|
||||
|
||||
Reference in New Issue
Block a user