@@ -9,13 +9,12 @@ import { ICharacterJoinerService, ICharSizeService, ICoreBrowserService, IRender
99import { ITerminal } from 'browser/Types' ;
1010import { Disposable , toDisposable } from 'common/Lifecycle' ;
1111import { getSafariVersion , isSafari } from 'common/Platform' ;
12- import { ICoreService , IDecorationService , ILogService , IOptionsService } from 'common/services/Services' ;
12+ import { ICoreService , IDecorationService , IOptionsService } from 'common/services/Services' ;
1313import { IWebGL2RenderingContext } from './Types' ;
1414import { WebglRenderer } from './WebglRenderer' ;
15- import { setTraceLogger } from 'common/services/LogService' ;
1615import { Emitter , EventUtils } from 'common/Event' ;
1716
18- export class WebglAddon extends Disposable implements ITerminalAddon , IWebglApi {
17+ export class WebglAddon extends Disposable implements ITerminalAddon , IWebglApi {
1918 private _terminal ?: Terminal ;
2019 private _renderer ?: WebglRenderer ;
2120
@@ -66,13 +65,8 @@ export class WebglAddon extends Disposable implements ITerminalAddon , IWebglApi
6665 const charSizeService : ICharSizeService = unsafeCore . _charSizeService ;
6766 const coreBrowserService : ICoreBrowserService = unsafeCore . _coreBrowserService ;
6867 const decorationService : IDecorationService = unsafeCore . _decorationService ;
69- const logService : ILogService = unsafeCore . _logService ;
7068 const themeService : IThemeService = unsafeCore . _themeService ;
7169
72- // Set trace logger just in case it hasn't been yet which could happen when the addon is
73- // bundled separately to the core module
74- setTraceLogger ( logService ) ;
75-
7670 this . _renderer = this . _register ( new WebglRenderer (
7771 terminal ,
7872 characterJoinerService ,
0 commit comments