Fixes logging to clean up on extension deactivate

This commit is contained in:
Eric Amodio
2017-02-26 23:50:29 -05:00
parent a552332234
commit 780423b195
4 changed files with 42 additions and 32 deletions

View File

@@ -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;