Implement logging features for decompiler (#78)

* Begin spdlog integration for decompiler

* Replace old prints with spdlog equivalents

* clang-format

* Fixes

* Log output to /logs/decompiler.log.

The console now prints that the disassembly has begun and it may take a few minutes to complete. This will reduce the amount of verbose logging output directly to a console stream.

* Update .gitignore

Ignore decompiler output for now

* Resolve more issues

Fixed percentage printing and various other issues

* Fixed stuff I broke (sorry)

* Fix more broke stuff
This commit is contained in:
doctashay
2020-10-15 18:59:30 -06:00
committed by GitHub
parent 8d91b47d00
commit 9410e01aaf
11 changed files with 355 additions and 358 deletions
+1 -1
View File
@@ -1170,4 +1170,4 @@ Instruction decode_instruction(LinkedWord& word, LinkedObjectFile& file, int seg
}
return i;
}
}