mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
oil: fix verbosity level in jit oil
This commit is contained in:
parent
2bf1dd8b60
commit
54c8d79996
@ -1172,8 +1172,8 @@ void CodeGen::generate(
|
||||
|
||||
if (VLOG_IS_ON(3)) {
|
||||
VLOG(3) << "Generated trace code:\n";
|
||||
// VLOG truncates output, so use std::cout
|
||||
std::cout << code;
|
||||
// VLOG truncates output, so use std::cerr
|
||||
std::cerr << code;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -104,6 +104,8 @@ void OILibraryImpl::processConfigFile() {
|
||||
}
|
||||
|
||||
std::pair<void*, const exporters::inst::Inst&> OILibraryImpl::compileCode() {
|
||||
google::SetVLOGLevel("*", opts_.debugLevel);
|
||||
|
||||
auto symbols = std::make_shared<SymbolService>(getpid());
|
||||
|
||||
auto* prog = symbols->getDrgnProgram();
|
||||
|
Loading…
Reference in New Issue
Block a user