Change log message
This commit is contained in:
parent
f6120d5ae6
commit
ad03d33d9c
|
@ -76,7 +76,7 @@ void CheckSpecVersion(const Version *spec_version) {
|
||||||
spec_versions.begin(), spec_versions.end(),
|
spec_versions.begin(), spec_versions.end(),
|
||||||
std::ostream_iterator<std::string>(ss, ","));
|
std::ostream_iterator<std::string>(ss, ","));
|
||||||
LOG(FATAL) << "Spec version " << spec_version->to_string()
|
LOG(FATAL) << "Spec version " << spec_version->to_string()
|
||||||
<< " not supported, must be {" << ss.str() << "}";
|
<< " not supported, must in [" << ss.str() << "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -184,8 +184,8 @@ void Channels::SetControlValue(const Option &option, std::int32_t value) {
|
||||||
std::copy(
|
std::copy(
|
||||||
values.begin(), values.end(),
|
values.begin(), values.end(),
|
||||||
std::ostream_iterator<std::int32_t>(ss, ","));
|
std::ostream_iterator<std::int32_t>(ss, ","));
|
||||||
LOG(WARNING) << option << " set value invalid, must be {" << ss.str()
|
LOG(WARNING) << option << " set value invalid, must in [" << ss.str()
|
||||||
<< "}";
|
<< "]";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user