This file is indexed.

/etc/murano/logging.conf is in murano-common 1:3.0.0-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[loggers]
keys: root,murano,applications

[handlers]
keys: watchedfile, applications, stderr, stdout, null

[formatters]
keys: context, default

[logger_root]
level = WARNING
handlers = watchedfile

[logger_applications]
level = DEBUG
handlers = applications
qualname = applications

[logger_murano]
level = INFO
handlers = watchedfile
qualname = murano

[logger_amqp]
level = WARNING
handlers = stderr
qualname = amqp

[logger_amqplib]
level = WARNING
handlers = stderr
qualname = amqplib

[logger_sqlalchemy]
level = WARNING
handlers = stderr
qualname = sqlalchemy
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARNING" logs neither.  (Recommended for production systems.)

[logger_eventletwsgi]
level = WARNING
handlers = stderr
qualname = eventlet.wsgi.server

[logger_messaging]
level = WARNING
handlers = stderr
qualname = oslo.messaging

[handler_null]
class = oslo_log.handlers.NullHandler
formatter = default
args = ()

[handler_stderr]
class = StreamHandler
args = (sys.stderr,)
formatter = context

[handler_stdout]
class = StreamHandler
args = (sys.stdout,)
formatter = context

[handler_watchedfile]
class: handlers.WatchedFileHandler
args: ('murano.log',)
formatter: context

[handler_applications]
class: handlers.WatchedFileHandler
args: ('applications.log',)
formatter: context

[formatter_default]
format = %(message)s
[formatter_context]
class: oslo_log.formatters.ContextFormatter
args: (datefmt=datefmt)
format: %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user)s %(tenant)s] %(instance)s%(message)s
datefmt: %Y-%m-%d %H:%M:%S