Remove debug logs

This commit is contained in:
Jamie Curnow
2023-05-26 18:46:55 +10:00
parent ceb62fb0f2
commit e6ae25d081
3 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,6 @@ package jwt
import (
"npm/internal/database"
"npm/internal/entity"
"npm/internal/logger"
)
var currentKeys KeysModel
@ -48,7 +47,6 @@ func LoadKeys() error {
return err
}
}
logger.Debug("private: %s", currentKeys.PrivateKey)
logger.Debug("public: %s", currentKeys.PublicKey)
return nil
}