mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Initialise logging before trying to use it in unit tests
This commit is contained in:
parent
add8acf428
commit
a7a98e27ea
@ -228,6 +228,9 @@ main(int c, const char **v)
|
||||
int loglevel = LOG_ERR;
|
||||
int accel_crypto = 0;
|
||||
|
||||
/* We must initialise logs before we call tor_assert() */
|
||||
init_logging(1);
|
||||
|
||||
#ifdef USE_DMALLOC
|
||||
{
|
||||
int r = CRYPTO_set_mem_ex_functions(tor_malloc_, tor_realloc_, tor_free_);
|
||||
@ -239,7 +242,6 @@ main(int c, const char **v)
|
||||
options = options_new();
|
||||
tor_threads_init();
|
||||
control_initialize_event_queue();
|
||||
init_logging(1);
|
||||
configure_backtrace_handler(get_version());
|
||||
|
||||
for (i_out = i = 1; i < c; ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user