Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# mac os
.idea

# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
Expand Down
4 changes: 4 additions & 0 deletions lumberjack.go
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@ func (l *Logger) timeFromName(filename, prefix, ext string) (time.Time, error) {
return time.Time{}, errors.New("mismatched extension")
}
ts := filename[len(prefix) : len(filename)-len(ext)]
split := strings.Split(ts, "-")
if len(split) == 4 {
ts = strings.Join(split[1:], "-")
}
return time.Parse(l.timeFormat(), ts)
}

Expand Down