fix: actually call function
continuous-integration/drone/push Build is failing Details

This commit is contained in:
decentral1se 2021-12-22 01:03:36 +01:00
parent 737a22aacc
commit 74f688350b
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ var appLogsCommand = &cli.Command{
stackLogs(c, app.StackName(), cl)
} else {
logrus.Debugf("tailing logs for %s", serviceName)
if err := tailServiceLogs; err != nil {
if err := tailServiceLogs(c, cl, app, serviceName); err != nil {
logrus.Fatal(err)
}
}