Fix log message to human readable format
diff --git a/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseStore.java b/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseStore.java
index dfed882..d453167 100644
--- a/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseStore.java
+++ b/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseStore.java
@@ -898,10 +898,8 @@
         throw new ConfigurationException("Gora-hbase-mapping does not include the name and keyClass in the databean.");
       }
     } catch (MalformedURLException ex) {
-      LOG.error("Error while trying to read the mapping file {}. "
-              + "Expected to be in the classpath "
-              + "(ClassLoader#getResource(java.lang.String)).",
-              mappingStream) ;
+      LOG.error("Error while trying to read the mapping. "
+              + "Mapping was not found.");
       LOG.error("Actual classpath = {}", Arrays.asList(
           ((URLClassLoader) getClass().getClassLoader()).getURLs()));
       throw ex ;