mirror of
https://github.com/ceph/ceph
synced 2024-12-28 06:23:08 +00:00
14 lines
212 B
Python
14 lines
212 B
Python
|
"""
|
||
|
Print task
|
||
|
"""
|
||
|
|
||
|
import logging
|
||
|
|
||
|
log = logging.getLogger(__name__)
|
||
|
|
||
|
def task(ctx, config):
|
||
|
"""
|
||
|
Print out config argument in teuthology log/output
|
||
|
"""
|
||
|
log.info('{config}'.format(config=config))
|