diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2018-04-02 11:11:37 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-22 15:12:50 +0100 |
commit | eb03bd2cd916932f74c02009e39576a20eee3071 (patch) | |
tree | de9eb911c106999d3cdadecc43b283bf9a257276 | |
parent | aff493631ee035af5404ae50d1ce14abb884669c (diff) | |
download | sos-eb03bd2cd916932f74c02009e39576a20eee3071.tar.gz |
[sosreport] Increase default log size to 25MB
Increases the default log_size option to 25MB, as 10MB may be too low
and miss pertinent information in places like /var/log/messages.
Resolves: #1258
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/sosreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index 6636d894..fdf8e24e 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -581,7 +581,7 @@ class SoSOptions(object): "format (see -l)", default=deque()) parser.add_argument("--log-size", action="store", - dest="log_size", default=10, type=int, + dest="log_size", default=25, type=int, help="set a limit on the size of collected logs " "(in MiB)") parser.add_argument("-a", "--alloptions", action="store_true", |