Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace fmt.Print statements with structured logger in utils package #2259

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions utils/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package utils
import (
"crypto/rand"
"encoding/base32"
"fmt"
"strconv"
"strings"
"time"
Expand All @@ -15,7 +14,7 @@ func GetRandomToken(length int) string {
randomBytes := make([]byte, 32)
_, err := rand.Read(randomBytes)
if err != nil {
fmt.Println("Random token erorr ==", err)
Log.Error("Random token error: %v", err)
}
return base32.StdEncoding.EncodeToString(randomBytes)[:length]
}
Expand All @@ -24,7 +23,7 @@ func ConvertStringToUint(number string) (uint, error) {
numberParse, err := strconv.ParseUint(number, 10, 32)

if err != nil {
fmt.Println("could not parse string to uint")
Log.Error("could not parse string to uint: %v", err)
return 0, err
}

Expand All @@ -35,7 +34,7 @@ func ConvertStringToInt(number string) (int, error) {
numberParse, err := strconv.ParseInt(number, 10, 32)

if err != nil {
fmt.Println("could not parse string to uint")
Log.Error("could not parse string to int: %v", err)
return 0, err
}

Expand All @@ -46,7 +45,7 @@ func GetInvoiceAmount(paymentRequest string) uint {
decodedInvoice, err := decodepay.Decodepay(paymentRequest)

if err != nil {
fmt.Println("Could not Decode Invoice", err)
Log.Error("Could not Decode Invoice: %v", err)
return 0
}
amountInt := decodedInvoice.MSatoshi / 1000
Expand All @@ -58,7 +57,7 @@ func GetInvoiceAmount(paymentRequest string) uint {
func GetInvoiceExpired(paymentRequest string) bool {
decodedInvoice, err := decodepay.Decodepay(paymentRequest)
if err != nil {
fmt.Println("Could not Decode Invoice", err)
Log.Error("Could not Decode Invoice: %v", err)
return false
}

Expand All @@ -83,7 +82,7 @@ func ConvertTimeToTimestamp(date string) int {

t, err := time.Parse(format, dateTouse)
if err != nil {
fmt.Println("Parse string to timestamp", err)
Log.Error("Parse string to timestamp: %v", err)
} else {
return int(t.Unix())
}
Expand Down
2 changes: 1 addition & 1 deletion utils/twitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func ConfirmIdentityTweet(username string) (string, error) {
if err != nil {
return "", err
}
// fmt.Println("tok", token)
Log.Info("Twitter verification token: %s", token)
pubkey, err := auth.VerifyArbitrary(token, "Sphinx Verification")
return pubkey, err
}
Expand Down
3 changes: 2 additions & 1 deletion utils/workflow_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package utils
import (
"encoding/json"
"fmt"

"github.com/google/uuid"
)

Expand Down Expand Up @@ -32,6 +33,6 @@ func lookupProcessingConfig(source string) error {
}

func processWithHandler(requestID string) (string, error) {
fmt.Println("Processing with default handler")
Log.Info("Processing with default handler")
return fmt.Sprintf("Processed with default handler, RequestID: %s", requestID), nil
}
Loading