Make the debug log option accessible
All checks were successful
CI / build (push) Successful in 1m15s

This commit is contained in:
David Venhoff 2025-08-06 15:37:26 +02:00
parent 119077b190
commit d85fc2487a

View File

@ -240,6 +240,14 @@ impl NyxConfig {
return self.config.runtime.set_aux_buffer_size(size); return self.config.runtime.set_aux_buffer_size(size);
} }
pub fn set_nyx_debug_log_path(&mut self, path: String) {
self.config.runtime.set_nyx_debug_log_path(path);
}
pub fn nyx_debug_log_path(&self) -> Option<&str> {
self.config.runtime.nyx_debug_log_path()
}
pub fn dict(&self) -> Vec<Vec<u8>> { pub fn dict(&self) -> Vec<Vec<u8>> {
self.config.fuzz.dict.clone() self.config.fuzz.dict.clone()
} }