chiark / gitweb /
apitest: Fix did message to mention "did"
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 4 Apr 2021 23:11:44 +0000 (00:11 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 5 Apr 2021 00:44:59 +0000 (01:44 +0100)
This makes one less thing to think about when grepping.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
apitest/apitest.rs

index e28ff9500fa97e3c0a820f3d4f0d4a974e9c44a4..51be59cbd80e0ea94b23dd66386aba9f1634c656 100644 (file)
@@ -261,7 +261,7 @@ impl<T,E> Result<T,E> {
   where Self: anyhow::Context<T,E>
   {
     let x = self.context(msg);
-    if x.is_ok() { info!("completed {}.", msg) };
+    if x.is_ok() { info!("did {}.", msg) };
     x
   }