Update logs --tail to use the new log directory

This commit is contained in:
Radu Matei 2018-04-12 17:00:18 +03:00
Родитель ce57a270ee
Коммит 077a6e46c4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -88,7 +88,7 @@ func (l *logsCmd) dumpLogs() error {
}
func (l *logsCmd) tailLogs(offset int64) error {
t, err := tail.TailFile(filepath.Join(l.home.Logs(), l.buildID), tail.Config{
t, err := tail.TailFile(filepath.Join(l.home.Logs(), l.appName, l.buildID), tail.Config{
Location: &tail.SeekInfo{Offset: -offset, Whence: os.SEEK_END},
Logger: tail.DiscardingLogger,
Follow: true,