mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-10 14:06:43 +00:00
10 lines
170 B
Go
10 lines
170 B
Go
package storage
|
|
|
|
import "github.com/sirupsen/logrus"
|
|
|
|
func handleErr(err error) {
|
|
if err != nil {
|
|
logrus.WithError(err).Error("Error during database operation!")
|
|
}
|
|
}
|