Re: [PATCH 1/3] Strip off the timestamp from error output pulled from program.log.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> diff --git a/storage/devicelibs/lvm.py b/storage/devicelibs/lvm.py
> index fb9482b..a0b01e7 100644
> --- a/storage/devicelibs/lvm.py
> +++ b/storage/devicelibs/lvm.py
> @@ -167,7 +167,9 @@ def lvm(args, progress=None):
>          return
>  
>      try:
> -        msg = open("/tmp/program.log").readlines()[-1].strip()
> +        # grab the last line of program.log and strip off the timestamp
> +        msg = open("/tmp/program.log").readlines()[-1]
> +        msg = msg.split(" : ", 1)[1].strip()
>      except Exception:
>          msg = ""
>  

Looks fine, though I wonder how slow/memory-intensive this will be when
program.log gets very large.  Probably not an issue, though.

- Chris

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux