diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-01-05 12:33:40 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-01-09 20:19:44 +0100 |
| commit | ec9744f3e5d52372901d95eeff342863bdf2437b (patch) | |
| tree | 21f6aa094c7113bad0c2be7ca5040e47bd2ff1e7 | |
| parent | 3f9152d9e29cfccd5570db1bd7c9c7691247ad89 (diff) | |
syz-manager, syz-gce: output 20 log lines instead of 50 in web UI
50 lines take too much space, there is scroll bar if necessary.
| -rw-r--r-- | syz-gce/http.go | 2 | ||||
| -rw-r--r-- | syz-manager/html.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/syz-gce/http.go b/syz-gce/http.go index 9ce0a4990..ebef2519b 100644 --- a/syz-gce/http.go +++ b/syz-gce/http.go @@ -86,7 +86,7 @@ manager is not running Log: <br> -<textarea id="log_textarea" readonly rows="50"> +<textarea id="log_textarea" readonly rows="20"> {{.Log}} </textarea> <script> diff --git a/syz-manager/html.go b/syz-manager/html.go index 768112ec8..403687237 100644 --- a/syz-manager/html.go +++ b/syz-manager/html.go @@ -522,7 +522,7 @@ var summaryTemplate = template.Must(template.New("").Parse(addStyle(` <b>Log:</b> <br> -<textarea id="log_textarea" readonly rows="50"> +<textarea id="log_textarea" readonly rows="20"> {{.Log}} </textarea> <script> |
