diff --git a/src/ClientServer/Controllers/Core/Testing/TestingController.cs b/src/ClientServer/Controllers/Core/Testing/TestingController.cs
index 657ca4d2147967666dc06ac661f37ebb6ed5d58b..bd901ba0d9a03dd117660120ac439f1f778b3629 100644
--- a/src/ClientServer/Controllers/Core/Testing/TestingController.cs
+++ b/src/ClientServer/Controllers/Core/Testing/TestingController.cs
@@ -1799,7 +1799,7 @@ namespace ClientServer.Controllers.Core.Testing
                 catch (Exception ex)
                 {
                     //we create this exception so it should be ok to send just the message...
-                    Console.WriteLine("ERROR creating tests with test files: " + e);
+                    Console.WriteLine("ERROR creating tests with test files: " + ex);
                     await
                         Response.WriteAsync(
                             Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message)));
@@ -1980,7 +1980,7 @@ namespace ClientServer.Controllers.Core.Testing
                 catch (Exception ex)
                 {
                     //we create this exception so it should be ok to send just the message...
-                    Console.WriteLine("ERROR creating tests with test files: " + e);
+                    Console.WriteLine("ERROR creating tests with test files: " + ex);
                     await
                         Response.WriteAsync(
                             Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message)));
@@ -2217,7 +2217,7 @@ namespace ClientServer.Controllers.Core.Testing
             catch (Exception ex)
             {
                 //we create this exception so it should be ok to send just the message...
-                Console.WriteLine("ERROR creating tests with test files: " + e);
+                Console.WriteLine("ERROR creating tests with test files: " + ex);
                 await
                     Response.WriteAsync(
                         Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message)));
@@ -2410,7 +2410,7 @@ namespace ClientServer.Controllers.Core.Testing
             catch (Exception ex)
             {
                 //we create this exception so it should be ok to send just the message...
-                Console.WriteLine("ERROR creating tests with test files: " + e);
+                Console.WriteLine("ERROR creating tests with test files: " + ex);
                 await
                     Response.WriteAsync(
                         Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message)));
@@ -2790,7 +2790,7 @@ namespace ClientServer.Controllers.Core.Testing
             catch (Exception ex)
             {
                 //we create this exception so it should be ok to send just the message...
-                Console.WriteLine("ERROR creating tests with test files: " + e);
+                Console.WriteLine("ERROR creating tests with test files: " + ex);
                 await
                     Response.WriteAsync(
                         Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message)));