We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2bdfd commit bf43171Copy full SHA for bf43171
tfx/utils/logging_utils_test.py
@@ -49,9 +49,9 @@ def testDefaultSettings(self):
49
50
def testOverrideSettings(self):
51
"""Ensure log overrides are set correctly."""
52
- config = logging_utils.LoggerConfig(log_root='path', log_level=logging.WARN,
+ config = logging_utils.LoggerConfig(log_root='path', log_level=logging.WARNING,
53
pipeline_name='pipe', worker_name='wrk')
54
self.assertEqual(config.log_root, 'path')
55
- self.assertEqual(config.log_level, logging.WARN)
+ self.assertEqual(config.log_level, logging.WARNING)
56
self.assertEqual(config.pipeline_name, 'pipe')
57
self.assertEqual(config.worker_name, 'wrk')
0 commit comments