diff options
Diffstat (limited to 'internal/timeline/get.go')
-rw-r--r-- | internal/timeline/get.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/timeline/get.go b/internal/timeline/get.go index 867e0940b..f07d81d55 100644 --- a/internal/timeline/get.go +++ b/internal/timeline/get.go @@ -13,7 +13,12 @@ func (t *timeline) Get(amount int, maxID string, sinceID string, minID string) ( l := t.log.WithFields(logrus.Fields{ "func": "Get", "accountID": t.accountID, + "amount": amount, + "maxID": maxID, + "sinceID": sinceID, + "minID": minID, }) + l.Debug("entering get") var statuses []*apimodel.Status var err error |