Fix incorrect error namespace

Change-Id: I65894c7acfa75f4601f43de2595e0f1fda89c0bb
Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/logging_test.cpp b/logging_test.cpp
index 2260861..f9d9739 100644
--- a/logging_test.cpp
+++ b/logging_test.cpp
@@ -210,12 +210,12 @@
         try
         {
             elog<example::xyz::openbmc_project::Example::Elog::
-                Error::AutoTestSimple>(
+                AutoTestSimple>(
                     example::xyz::openbmc_project::Example::Elog::
-                        Error::AutoTestSimple::STRING("FOO"));
+                        AutoTestSimple::STRING("FOO"));
         }
         catch (elogException<example::xyz::openbmc_project::Example::Elog::
-            Error::AutoTestSimple>& e)
+            AutoTestSimple>& e)
         {
             std::cout << "elog exception caught: " << e.what() << std::endl;
             commit(e.name());