vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / aria / cli / config / config_template.yaml
1
2 logging:
3
4   # path to a file where cli logs will be saved.
5   filename: {{ log_path }}
6
7   # configuring level per logger
8   loggers:
9
10     # main logger of the cli. provides basic descriptions for executed operations.
11     aria.cli.main: info
12
13   execution:
14     formats:
15       # According to verbosity level 0 - no verbose. 3 - high verbose
16       0: '{message}'
17       1: '{timestamp:%H:%M:%S} | {level[0]} | {message}'
18       2: '{timestamp:%H:%M:%S} | {level[0]} | {implementation} | {message}'
19       3: '{timestamp:%H:%M:%S} | {level[0]} | {implementation} | {inputs} | {message}'
20
21     colors:
22       enabled: true
23
24       level:
25         default: {'fore': 'lightmagenta_ex'}
26         error: {'fore': 'red', 'style': 'bright'}
27       timestamp:
28         default: {'fore': 'lightmagenta_ex'}
29         error: {'fore': 'red', 'style': 'bright'}
30       message:
31         default: {'fore': 'lightblue_ex'}
32         error: {'fore': 'red', 'style': 'bright'}
33       implementation:
34         default: {'fore': 'lightblack_ex'}
35         error: {'fore': 'red', 'style': 'bright'}
36       inputs:
37         default: {'fore': 'blue'}
38         error: {'fore': 'red', 'style': 'bright'}
39       traceback:
40         default: {'fore': 'red'}
41
42       marker: 'lightyellow_ex'