Don't log JS exception details by default (#6205)

This commit is contained in:
Eddy Ashton 2024-05-24 14:39:36 +01:00 коммит произвёл GitHub
Родитель 33fd37cecf
Коммит bdac0c49c2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -28,8 +28,8 @@ namespace ccf::js::core
static constexpr size_t default_stack_size = 1024 * 1024;
static constexpr size_t default_heap_size = 100 * 1024 * 1024;
bool log_exception_details = true;
bool return_exception_details = true;
bool log_exception_details = false;
bool return_exception_details = false;
Runtime();
~Runtime();