Pulsar Driver: remove debug log that breaks Schema.AUTO_CONSUME() usage

This commit is contained in:
Enrico Olivelli 2022-02-03 12:47:38 +01:00
parent ecdb01ef0d
commit fcf5fd5ed5

View File

@ -277,7 +277,6 @@ public class PulsarActivity extends SimpleActivity implements ActivityDefObserve
throw new RuntimeException("Unsupported schema type string: " + schemaType + "; " + throw new RuntimeException("Unsupported schema type string: " + schemaType + "; " +
"Only primitive type, Avro type and AUTO_CONSUME are supported at the moment!"); "Only primitive type, Avro type and AUTO_CONSUME are supported at the moment!");
} }
logger.info("Generated schema from {}={} {}={}: {}", schemaTypeConfEntry, value, schemaDefinitionConfEntry, schemaDefinition, result.getSchemaInfo().getSchemaDefinition());
return result; return result;
} }