From a3eb5c7676735d67012d8a57635aa93b952eb00e Mon Sep 17 00:00:00 2001 From: colincreasman Date: Thu, 17 Feb 2022 13:27:04 -0800 Subject: [PATCH] New repo Set up new repo using clone of original --- .gitattributes | 2 ++ README.md | 2 ++ Source Code/main/Controller.cs | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/README.md b/README.md new file mode 100644 index 0000000..b4641ac --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# HobbyProjectGenerator + A web app that curates recommendations for hobbyists and project enthusiasts. diff --git a/Source Code/main/Controller.cs b/Source Code/main/Controller.cs index 4450fc8..1f428d5 100644 --- a/Source Code/main/Controller.cs +++ b/Source Code/main/Controller.cs @@ -22,6 +22,8 @@ namespace TeamHobby.HobbyProjectGenerator.Main // Logger log = new Logger(); //Logger.PrintTest(); + LoggingManager logger = new LoggingManager(); + logger.CreateLog("Testing logs from main Controller"); // Loop login terminal bool mainMenu = true; @@ -30,6 +32,8 @@ namespace TeamHobby.HobbyProjectGenerator.Main { // Create credentials object GetCredentials credentials = new GetCredentials(); + logger.CreateLog("Testing credentials from main Controller"); + // Get DB credentials ***Both values currently hard coded, will update to user input later on.*** string dbUserName = "root";