mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-16 09:55:07 +00:00
28 lines
636 B
Plaintext
28 lines
636 B
Plaintext
program="../lexical_scopes"
|
|
chronicles_sinks="textlines[file(lines.txt,truncate)],textblocks[file(blocks.txt,truncate)]"
|
|
chronicles_timestamps=None
|
|
chronicles_colors=None
|
|
[Output]
|
|
lines.txt="""INF main started topics="main" tid=26342 a=12 b=overriden-b d=some-d arg=50 z=20 x=16 c=10
|
|
INF exiting tid=26342 msg="bye bye" b=overriden-b x=16 c=100 a=12
|
|
"""
|
|
blocks.txt="""INF main started topics="main"
|
|
tid: 26342
|
|
a: 12
|
|
b: overriden-b
|
|
d: some-d
|
|
arg: 50
|
|
z: 20
|
|
x: 16
|
|
c: 10
|
|
|
|
INF exiting
|
|
tid: 26342
|
|
msg: bye bye
|
|
b: overriden-b
|
|
x: 16
|
|
c: 100
|
|
a: 12
|
|
|
|
"""
|