Minor whitespace fix in logging message in HDF5 output layer
authorMartin Baeuml <baeuml@kit.edu>
Wed, 22 Oct 2014 08:19:44 +0000 (10:19 +0200)
committerMartin Baeuml <baeuml@kit.edu>
Wed, 22 Oct 2014 08:19:44 +0000 (10:19 +0200)
src/caffe/layers/hdf5_output_layer.cpp

index b8210e2..4a72a18 100644 (file)
@@ -30,7 +30,7 @@ HDF5OutputLayer<Dtype>::~HDF5OutputLayer<Dtype>() {
 template <typename Dtype>
 void HDF5OutputLayer<Dtype>::SaveBlobs() {
   // TODO: no limit on the number of blobs
-  LOG(INFO) << "Saving HDF5 file" << file_name_;
+  LOG(INFO) << "Saving HDF5 file " << file_name_;
   CHECK_EQ(data_blob_.num(), label_blob_.num()) <<
       "data blob and label blob must have the same batch size";
   hdf5_save_nd_dataset(file_id_, HDF5_DATA_DATASET_NAME, data_blob_);