change unknown query params to

This commit is contained in:
katefort 2025-04-21 20:53:31 -05:00
parent fa4561d90b
commit 79977f1a18
3 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
package application

View file

@ -0,0 +1,13 @@
package utils
import (
"github.com/sirupsen/logrus"
)
func InitializeLogger() *logrus.Logger {
log := logrus.New()
log.SetFormatter(&logrus.TextFormatter{
FullTimestamp: true, // Include the full timestamp (with date and time)
})
return log
}