aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/ValidationService.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-30 14:36:39 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:14 +0100
commitdef79f104999710953124c77241c95a7726791f0 (patch)
treef1096b07aa6c67d9c986df025400d8e555ca8a95 /language-web/src/main/js/xtext/ValidationService.ts
parentfeat(web): server-side content assist filtering (diff)
downloadrefinery-def79f104999710953124c77241c95a7726791f0.tar.gz
refinery-def79f104999710953124c77241c95a7726791f0.tar.zst
refinery-def79f104999710953124c77241c95a7726791f0.zip
chore(web): move logger to utils/
Diffstat (limited to 'language-web/src/main/js/xtext/ValidationService.ts')
-rw-r--r--language-web/src/main/js/xtext/ValidationService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/language-web/src/main/js/xtext/ValidationService.ts b/language-web/src/main/js/xtext/ValidationService.ts
index 838aa31e..163b5535 100644
--- a/language-web/src/main/js/xtext/ValidationService.ts
+++ b/language-web/src/main/js/xtext/ValidationService.ts
@@ -1,8 +1,8 @@
1import type { Diagnostic } from '@codemirror/lint'; 1import type { Diagnostic } from '@codemirror/lint';
2 2
3import type { EditorStore } from '../editor/EditorStore'; 3import type { EditorStore } from '../editor/EditorStore';
4import { getLogger } from '../logging';
5import type { UpdateService } from './UpdateService'; 4import type { UpdateService } from './UpdateService';
5import { getLogger } from '../utils/logger';
6import { isValidationResult } from './xtextServiceResults'; 6import { isValidationResult } from './xtextServiceResults';
7 7
8const log = getLogger('xtext.ValidationService'); 8const log = getLogger('xtext.ValidationService');