From 79a1d24c56b186b4d7ebde8bc828395a8ca6da07 Mon Sep 17 00:00:00 2001 From: arzumify Date: Wed, 8 Jan 2025 18:21:54 +0000 Subject: [PATCH] Removed temporary logging functions --- main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.go b/main.go index f947b4a..728ff30 100644 --- a/main.go +++ b/main.go @@ -2,7 +2,6 @@ package main import ( "errors" - "fmt" "time" "crypto/ed25519" @@ -37,7 +36,6 @@ var ( func logFunc(message string, messageType library.MessageCode, information *library.ServiceInitializationInformation) { // Log the message to the logger service - fmt.Println("here i am, sending a message to the logger service") information.SendISMessage(loggerService, messageType, message) } @@ -171,7 +169,6 @@ func Main(information *library.ServiceInitializationInformation) { go information.StartISProcessor() // Initiate a connection to the database - fmt.Println("Connecting to the database") conn, err := information.GetDatabase() if err != nil { logFunc(err.Error(), 3, information)