aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent/agent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/agent/agent.cxx')
-rw-r--r--bbot/agent/agent.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx
index 5c91025..67cf57f 100644
--- a/bbot/agent/agent.cxx
+++ b/bbot/agent/agent.cxx
@@ -822,7 +822,11 @@ try
optional<toolchain_lock> l;
while (!(l = lock_toolchain (60 /* seconds */)))
{
- warn << "unable to acquire global toolchain lock " << tc_lock
+ // One typical situation where this can happen is when another agent
+ // takes a while to request a task (e.g., due to network issues). So
+ // this is an info as opposed to a warning.
+ //
+ info << "unable to acquire global toolchain lock " << tc_lock
<< " for 60s";
}
pr.first = move (*l);