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";