Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
log.cpp
Go to the documentation of this file.
1// Used for `vinfo` in log.hpp.
2#include <cstdlib>
3#include <string>
4
5#ifndef __wasm__
6bool verbose_logging = std::getenv("BB_VERBOSE") == nullptr ? false : std::string(std::getenv("BB_VERBOSE")) == "1";
7#else
8bool verbose_logging = true;
9#endif
10
11// Used for `debug` in log.hpp.
12bool debug_logging = false;
bool debug_logging
Definition log.cpp:12
bool verbose_logging
Definition log.cpp:6
constexpr decltype(auto) get(::tuplet::tuple< T... > &&t) noexcept
Definition tuple.hpp:13