We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c47d5d commit 48fd313Copy full SHA for 48fd313
judge/runguard.cc
@@ -210,7 +210,7 @@ void verbose(const char *format, ...)
210
va_list ap;
211
va_start(ap,format);
212
213
- if ( ! be_quiet && be_verbose ) {
+ if ( true ) { //! be_quiet && be_verbose ) {
214
struct timeval currtime{};
215
gettimeofday(&currtime,nullptr);
216
double runtime = (currtime.tv_sec - progstarttime.tv_sec ) +
@@ -1272,7 +1272,7 @@ int main(int argc, char **argv)
1272
}
1273
1274
1275
-// cgroup_set_default_logger(CGROUP_LOG_DEBUG);
+ cgroup_set_default_logger(CGROUP_LOG_DEBUG);
1276
1277
/* Make libcgroup ready for use */
1278
ret = cgroup_init();
0 commit comments