diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-03-22 13:03:26 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-03-22 13:03:43 +0100 |
commit | 02d64bd929c9663ba38e96721c6dbd89972d043d (patch) | |
tree | 7d78654557144ab05bf41109abc4e7e3ee3e79ac /test/functional/combined_log_template.html | |
parent | 90586b68972c7f7eea3dd07008d97482a42e8072 (diff) | |
parent | 8317a4516102d95c7e45c3b61e33faa84346eb61 (diff) |
Merge #10017: combine_logs.py - aggregates log files from multiple bitcoinds during functional tests.
8317a45 Python functional tests should log in UTC (John Newbery)
61d75f5 Introduce combine_logs.py to combine log files from multiple bitcoinds. (John Newbery)
Tree-SHA512: 472a00907c938cd558353086eda0fbd8746a889680d5db4900eb95496f5f6a12eeb46560a5efd4bbfee10c85307fcf50d021356c5aad64168eb5cc2ababb073a
Diffstat (limited to 'test/functional/combined_log_template.html')
-rw-r--r-- | test/functional/combined_log_template.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/functional/combined_log_template.html b/test/functional/combined_log_template.html new file mode 100644 index 0000000000..c0b854b080 --- /dev/null +++ b/test/functional/combined_log_template.html @@ -0,0 +1,40 @@ +<html lang="en"> +<head> + <title> {{ title }} </title> + <style> + ul { + list-style-type: none; + font-family: monospace; + } + li { + border: 1px solid slategray; + margin-bottom: 1px; + } + li:hover { + filter: brightness(85%); + } + li.log-test { + background-color: cyan; + } + li.log-node0 { + background-color: lightblue; + } + li.log-node1 { + background-color: lightgreen; + } + li.log-node2 { + background-color: lightsalmon; + } + li.log-node3 { + background-color: lightyellow; + } + </style> +</head> +<body> +<ul> +{% for event in log_events %} +<li class="log-{{ event.source }}"> {{ event.source }} {{ event.timestamp }} {{event.event}}</li> +{% endfor %} +</ul> +</body> +</html> |