diff --git a/polars/datatypes/index.ts b/polars/datatypes/index.ts index 9f41eede6..ab27c6b88 100644 --- a/polars/datatypes/index.ts +++ b/polars/datatypes/index.ts @@ -111,7 +111,6 @@ const POLARS_TYPE_TO_CONSTRUCTOR: Record = { /** @ignore */ export const polarsTypeToConstructor = (dtype: DataType): CallableFunction => { - console.log("variant=", dtype.variant); const ctor = POLARS_TYPE_TO_CONSTRUCTOR[dtype.variant]; if (!ctor) { throw new Error(`Cannot construct Series for type ${dtype.variant}.`);