Skip to content

Commit

Permalink
refactor: replace fmt.Print with structured logger (#2259)
Browse files Browse the repository at this point in the history
  • Loading branch information
saithsab877 authored Dec 22, 2024
1 parent 1bc2518 commit 8969849
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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
}

0 comments on commit 8969849

Please sign in to comment.