dir returns the directory for the current filename.
()
| 399 | |
| 400 | // dir returns the directory for the current filename. |
| 401 | func (l *RotatingFileStore) dir() string { |
| 402 | return filepath.Dir(l.filename()) |
| 403 | } |
| 404 | |
| 405 | // prefixAndExt returns the filename part and extension part from the RotatingFileStore's |
| 406 | // filename. |
no test coverage detected