From 591f71285c1349fc6b6d2a113b360d0d2da46cf6 Mon Sep 17 00:00:00 2001 From: Mike Orr Date: Wed, 21 May 2014 07:54:22 -0400 Subject: [PATCH] cleanup exception text --- util/env_hdfs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/env_hdfs.cc b/util/env_hdfs.cc index 6b6d56c00f..1618e54685 100644 --- a/util/env_hdfs.cc +++ b/util/env_hdfs.cc @@ -501,7 +501,7 @@ Status HdfsEnv::CreateDirIfMissing(const std::string& name) { return CreateDir(name); default: // anything else should be an error Log(mylog, "CreateDirIfMissing hdfsExists call failed"); - throw HdfsFatalException("3. hdfsExists call failed with error " + + throw HdfsFatalException("hdfsExists call failed with error " + std::to_string(value) + ".\n"); } };