_get_default_value info

Using GE 1.2.5 I see a lot of these INFO messages:

INFO:great_expectations.expectations.expectation:_get_default_value called with key "table", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "row_condition", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "condition_parser", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "table", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "row_condition", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "condition_parser", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "table", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "row_condition", but it is not a known field
INFO:great_expectations.expectations.expectation:_get_default_value called with key "condition_parser", but it is not a known field

How do I resolve them or turn them off?

How about these messages?

No `PandasFilesystemDatasource.asset_types` have be declared for the `Datasource`
No `PandasDBFSDatasource.asset_types` have be declared for the `Datasource`
No `PandasS3Datasource.asset_types` have be declared for the `Datasource`
No `PandasGoogleCloudStorageDatasource.asset_types` have be declared for the `Datasource`
No `PandasAzureBlobStorageDatasource.asset_types` have be declared for the `Datasource`

I am using: ge.get_context(mode="ephemeral") Thx

I have found a solution, I need to re-set the logging.basicConfig by removing all existing handlers and then call basicConfig() again.

# Example to remove all root logger handlers and reconfigure. (UNTESTED)
import logging

# Remove all handlers associated with the root logger object.
for handler in logging.root.handlers[:]:
    logging.root.removeHandler(handler)

# Reconfigure logging again, this time with a file.
logging.basicConfig(filename = 'myfile.log', level=logging.DEBUG, format='%(filename)s:%(lineno)s %(levelname)s:%(message)s')