diff --git a/logs/logging.go b/logs/logging.go
index 1936b19b73aa00653aaa0ce1eff86e4a72095962..15b548ba1a637a27eb178832aa7c5f76b5e06cb4 100644
--- a/logs/logging.go
+++ b/logs/logging.go
@@ -6,6 +6,7 @@ import (
 	"os"
 )
 
+//Created with inspiration from https://dev.to/gholami1313/saving-log-messages-to-a-custom-log-file-in-golang-ce5
 //Function to handle logging of errors to errorlog file with message
 func Logerror(err error, msg string) {
 	// log to custom file
@@ -26,6 +27,7 @@ func Logerror(err error, msg string) {
 	log.Println(msg, err)
 }
 
+//Created with inspiration from https://dev.to/gholami1313/saving-log-messages-to-a-custom-log-file-in-golang-ce5
 //Function to handle information logging to infofile
 func Loginfo(msg string) {
 	LOG_FILE := "./logs/infolog"
@@ -45,6 +47,7 @@ func Loginfo(msg string) {
 	log.Println(msg)
 }
 
+//Created with inspiration from https://dev.to/gholami1313/saving-log-messages-to-a-custom-log-file-in-golang-ce5
 //Function to handle error message display to file. 
 func Logerrorinfo(msg string) {
 	// log to custom file