Skip to content

Commit

Permalink
Cleanup some console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed May 25, 2024
1 parent 3e15f69 commit 78eb820
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import {
StringASTNode,
} from "@gxwf/server-common/src/ast/types";
import { Diagnostic, DiagnosticSeverity, DocumentContext, Range } from "@gxwf/server-common/src/languageTypes";
import { injectable } from "inversify";
import { URI } from "vscode-uri";
import { JSONSchema, JSONSchemaRef } from "./jsonSchema";
import { injectable } from "inversify";

const YAML_SCHEMA_PREFIX = "yaml-schema: ";
export const YAML_SOURCE = "YAML";
Expand Down Expand Up @@ -437,7 +437,7 @@ export function asSchema(schema?: JSONSchemaRef): JSONSchema | undefined {
};
}
if (schema.$ref) {
console.log(`DEF ${schema.$ref}`);
console.debug(`DEF ${schema.$ref}`);
}
return schema;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ ${this.indentation}${this.indentation}$0

result.items = this.mergeCompletionItems(result.items);

console.debug("COMPLETION RESULT:", result);
// console.debug("COMPLETION RESULT:", result);
return result;
}

Expand Down

0 comments on commit 78eb820

Please sign in to comment.