Skip to content

Commit

Permalink
Merge pull request #784 from manahl/chunkstore-warning
Browse files Browse the repository at this point in the history
Update info log message in exception handler in chunkstore
  • Loading branch information
yschimke committed Jun 6, 2019
2 parents b97c033 + c3f834c commit 722316c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arctic/serialization/numpy_arrays.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def docify(self, df):
except Exception as e:
typ = infer_dtype(df[c], skipna=False)
msg = "Column '{}' type is {}".format(str(c), typ)
logging.info(msg)
logging.warning(msg)
raise e

arrays = compress_array(arrays)
Expand Down

0 comments on commit 722316c

Please sign in to comment.