Skip to content

Commit 9d71fb5

Browse files
committed
remove lanugageId console logs #23
1 parent ab89fc5 commit 9d71fb5

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/documentSymbolProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ export class CodeOrganizerDocumentSymbolProvider implements vscode.DocumentSymbo
6868
////// 1.2.1 Document Processing ----
6969
const text = document.getText();
7070
const languageId = document.languageId;
71-
console.log(`[Code Organizer] Document language: ${languageId}`);
7271
const all_matches: SectionMatch[] = findSections(text, languageId);
7372
const matches = all_matches.filter((item: SectionMatch) => item.depth === 1);
7473

src/utils/findSections.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export interface SectionMatch {
1414
* Supports multiple comment syntaxes: #, //, --
1515
*/
1616
export function findSections(text: string, languageId?: string): SectionMatch[] {
17-
console.log(`[Code Organizer > findSections] Processing file type: ${languageId}`);
17+
// console.log(`[Code Organizer > findSections] Processing file type: ${languageId}`);
1818
const matches: SectionMatch[] = [];
1919

2020
//// 2.1 Pattern Definitions ----

0 commit comments

Comments
 (0)