Remove console.log

This commit is contained in:
pietervdvn 2022-01-24 17:20:40 +01:00
parent 848a05a21f
commit a1136991f0

View file

@ -949,7 +949,6 @@ class SubstituteLayer extends Conversion<(string | LayerConfigJson), LayerConfig
convert(state: DesugaringContext, json: string | LayerConfigJson, context: string): { result: LayerConfigJson[]; errors: string[]; warnings: string[] } {
const errors = []
const warnings = []
console.log("Substituting layer ", json)
if (typeof json === "string") {
const found = state.sharedLayers.get(json)
if (found === undefined) {