File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export interface SectionMatch {
1414 * Supports multiple comment syntaxes: #, //, --
1515 */
1616export 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 ----
You can’t perform that action at this time.
0 commit comments