fix debug.cpp error output (now compiles against libc++)

This commit is contained in:
Dane Springmeyer 2013-07-26 19:32:49 -04:00
parent fd14edcd56
commit 4eda02592e

View file

@ -137,7 +137,7 @@ void logger::use_file(std::string const& filepath)
else
{
std::stringstream s;
s << "cannot redirect log to file " << file_output_;
s << "cannot redirect log to file " << file_name_;
throw std::runtime_error(s.str());
}
}