Skip to content

Commit

Permalink
Fix glog_example
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharpm committed Dec 31, 2016
1 parent dde508d commit 850e8c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/test/glog_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ int main(int argc, char* argv[])
FLAGS_colorlogtostderr = true;
google::ParseCommandLineFlags(&argc, &argv, true);
google::InitGoogleLogging(argv[0]);
LOG(INFO) << "Hello from main.cpp!";
LOG(INFO) << "Hello from " __FILE__ "!";
complex_calculation();
LOG(INFO) << "main function about to end!";
}

0 comments on commit 850e8c6

Please sign in to comment.