Remove noisy log message

Fixes #648
This commit is contained in:
Timothy Stack 2019-07-30 21:50:02 -07:00
parent 3669b73e5b
commit ed67c6cf9f
1 changed files with 0 additions and 2 deletions

View File

@ -123,8 +123,6 @@ void curl_looper::loop_body()
ts.tv_sec = deadline / 1000ULL;
ts.tv_nsec = (deadline % 1000ULL) * 1000 * 1000;
log_trace("no requests in progress, waiting %d ms for new ones",
timeout);
pthread_cond_timedwait(&this->cl_cond, &this->cl_mutex, &ts);
}
}