diff --git a/build/NuSpecs/UmbracoCms.Core.nuspec b/build/NuSpecs/UmbracoCms.Core.nuspec
index 450aec09b6..cb7092fe80 100644
--- a/build/NuSpecs/UmbracoCms.Core.nuspec
+++ b/build/NuSpecs/UmbracoCms.Core.nuspec
@@ -38,7 +38,8 @@
-
+
+
diff --git a/src/Umbraco.Tests/Logging/ConsoleLogger.cs b/src/Umbraco.Tests/Logging/ConsoleLogger.cs
new file mode 100644
index 0000000000..ba3981841d
--- /dev/null
+++ b/src/Umbraco.Tests/Logging/ConsoleLogger.cs
@@ -0,0 +1,48 @@
+using System;
+using System.Linq;
+using Umbraco.Core.Logging;
+
+namespace Umbraco.Tests.Logging
+{
+ // FIXME how come some C# 6 features are working here ?!
+
+ public class ConsoleLogger : ILogger
+ {
+ public void Error(Type callingType, string message, Exception exception)
+ {
+ Console.WriteLine("INFO {0} - {1}", callingType.Name, message);
+ Console.WriteLine(exception);
+ }
+
+ public void Warn(Type callingType, string message, params Func