summaryrefslogtreecommitdiffstats
path: root/azure/aria/aria-extension-cloudify/src/aria/aria/cli/config/config_template.yaml
blob: 94fcac3307882869ff8d355b090f6e40cbc34b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
logging:

  # path to a file where cli logs will be saved.
  filename: {{ log_path }}

  # configuring level per logger
  loggers:

    # main logger of the cli. provides basic descriptions for executed operations.
    aria.cli.main: info

  execution:
    formats:
      # According to verbosity level 0 - no verbose. 3 - high verbose
      0: '{message}'
      1: '{timestamp:%H:%M:%S} | {level[0]} | {message}'
      2: '{timestamp:%H:%M:%S} | {level[0]} | {implementation} | {message}'
      3: '{timestamp:%H:%M:%S} | {level[0]} | {implementation} | {inputs} | {message}'

    colors:
      enabled: true

      level:
        default: {'fore': 'lightmagenta_ex'}
        error: {'fore': 'red', 'style': 'bright'}
      timestamp:
        default: {'fore': 'lightmagenta_ex'}
        error: {'fore': 'red', 'style': 'bright'}
      message:
        default: {'fore': 'lightblue_ex'}
        error: {'fore': 'red', 'style': 'bright'}
      implementation:
        default: {'fore': 'lightblack_ex'}
        error: {'fore': 'red', 'style': 'bright'}
      inputs:
        default: {'fore': 'blue'}
        error: {'fore': 'red', 'style': 'bright'}
      traceback:
        default: {'fore': 'red'}

      marker: 'lightyellow_ex'