mirror of
https://github.com/docker/compose.git
synced 2025-07-27 23:54:04 +02:00
Add a debug log message for config filenames.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
fd75e4bf63
commit
577439ea7f
@ -104,6 +104,8 @@ def find(base_dir, filenames):
|
|||||||
filenames = [os.path.join(base_dir, f) for f in filenames]
|
filenames = [os.path.join(base_dir, f) for f in filenames]
|
||||||
else:
|
else:
|
||||||
filenames = get_default_config_files(base_dir)
|
filenames = get_default_config_files(base_dir)
|
||||||
|
|
||||||
|
log.debug("Using configuration files: {}".format(",".join(filenames)))
|
||||||
return ConfigDetails(
|
return ConfigDetails(
|
||||||
os.path.dirname(filenames[0]),
|
os.path.dirname(filenames[0]),
|
||||||
[ConfigFile(f, load_yaml(f)) for f in filenames])
|
[ConfigFile(f, load_yaml(f)) for f in filenames])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user