Minor: missing space in string formatting
authorSean Bell <sbell@cs.cornell.edu>
Wed, 9 Sep 2015 16:52:52 +0000 (12:52 -0400)
committerSean Bell <sbell@cs.cornell.edu>
Wed, 9 Sep 2015 16:52:52 +0000 (12:52 -0400)
src/caffe/solver.cpp

index 394ec3b..2e59a88 100644 (file)
@@ -732,7 +732,7 @@ void SGDSolver<Dtype>::SnapshotSolverStateToBinaryProto(
   }
   string snapshot_filename = Solver<Dtype>::SnapshotFilename(".solverstate");
   LOG(INFO)
-    << "Snapshotting solver state to binary proto file" << snapshot_filename;
+    << "Snapshotting solver state to binary proto file " << snapshot_filename;
   WriteProtoToBinaryFile(state, snapshot_filename.c_str());
 }