You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by zu...@apache.org on 2016/05/27 03:23:00 UTC

[09/50] [abbrv] incubator-quickstep git commit: Correction in error message.

Correction in error message.


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/814794d9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/814794d9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/814794d9

Branch: refs/heads/preloader-cleanup
Commit: 814794d929c4ebc023956991b7a49cdd72cdcc6c
Parents: d41da16
Author: Harshad Deshmukh <ha...@cs.wisc.edu>
Authored: Wed May 4 21:30:53 2016 -0500
Committer: Harshad Deshmukh <ha...@cs.wisc.edu>
Committed: Wed May 4 21:30:53 2016 -0500

----------------------------------------------------------------------
 storage/PreloaderThread.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/814794d9/storage/PreloaderThread.cpp
----------------------------------------------------------------------
diff --git a/storage/PreloaderThread.cpp b/storage/PreloaderThread.cpp
index 8960e65..2fe7626 100644
--- a/storage/PreloaderThread.cpp
+++ b/storage/PreloaderThread.cpp
@@ -103,8 +103,9 @@ std::size_t PreloaderThread::preloadNUMAAware(
         BlockReference current_block = storage_manager_->getBlock(
             curr_block_id, relation, partition_numa_node_id);
       } catch (...) {
-        LOG(ERROR) << "Error after loading "
+        LOG(ERROR) << "Error while preloading: " << " After loading total "
                    << blocks_loaded + num_previously_loaded_blocks
+                   << " blocks and " << blocks_loaded
                    << " blocks of relation " << relation.getName() << "\n";
         throw;
       }