mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
🎨 observe the error, if there is one
This commit is contained in:
parent
aa9ef12d43
commit
31bcd632c7
@ -370,12 +370,26 @@ func TailLogsNative(logFilePath string, opts *humanlog.HandlerOptions) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func OpenAndSeek(filepath string, offset int64) (*os.File, error) {
|
||||||
|
file, err := os.Open(filepath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = file.Seek(offset, 0)
|
||||||
|
if err != nil {
|
||||||
|
_ = file.Close()
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return file, nil
|
||||||
|
}
|
||||||
|
|
||||||
func TailFrom(lastOffset int64, logFilePath string, opts *humanlog.HandlerOptions) error {
|
func TailFrom(lastOffset int64, logFilePath string, opts *humanlog.HandlerOptions) error {
|
||||||
file, err := os.Open(logFilePath)
|
file, err := OpenAndSeek(logFilePath, lastOffset)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
file.Seek(lastOffset, 0)
|
|
||||||
fileScanner := bufio.NewScanner(file)
|
fileScanner := bufio.NewScanner(file)
|
||||||
var lines []string
|
var lines []string
|
||||||
for fileScanner.Scan() {
|
for fileScanner.Scan() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user