Skip to content

Commit

Permalink
less logging
Browse files Browse the repository at this point in the history
  • Loading branch information
meisterT committed Jun 6, 2024
1 parent af10f01 commit 48e5556
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions judge/runguard.cc
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ void verbose(const char *format, ...)
va_list ap;
va_start(ap,format);

if ( true ) { //! be_quiet && be_verbose ) {
if ( ! be_quiet && be_verbose ) {
struct timeval currtime{};
gettimeofday(&currtime,nullptr);
double runtime = (currtime.tv_sec - progstarttime.tv_sec ) +
Expand Down Expand Up @@ -1272,7 +1272,7 @@ int main(int argc, char **argv)
}
}

cgroup_set_default_logger(CGROUP_LOG_DEBUG);
// cgroup_set_default_logger(CGROUP_LOG_DEBUG);

/* Make libcgroup ready for use */
ret = cgroup_init();
Expand Down

0 comments on commit 48e5556

Please sign in to comment.