[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/14: Remove some time logging
From: |
Christopher Baines |
Subject: |
01/14: Remove some time logging |
Date: |
Fri, 2 Feb 2024 10:58:37 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit e51d2f893231727aca77b0654246ee8631f4c869
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sat Jan 27 18:39:41 2024 +0000
Remove some time logging
As this is a bit noisy.
---
guix-data-service/model/derivation.scm | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/guix-data-service/model/derivation.scm
b/guix-data-service/model/derivation.scm
index c516e58..3b35a0a 100644
--- a/guix-data-service/model/derivation.scm
+++ b/guix-data-service/model/derivation.scm
@@ -1834,11 +1834,7 @@ WHERE derivation_inputs.derivation_id IN ("
(hash-set! seen-ids number #t)
number))))
- (with-time-logging
- (simple-format
- #f "querying for batch of ~A related derivation ids"
- (length ids-chunk))
- (exec-query conn query)))))
+ (exec-query conn query))))
(chunk! ids 500))
<
=))
@@ -1863,8 +1859,7 @@ INNER JOIN derivation_source_files
(map (lambda (row)
(list (string->number (first row))
(second row)))
- (with-time-logging "finding batch of missing sources"
- (exec-query conn query))))
+ (exec-query conn query)))
(let ((seen-ids (make-hash-table)))
(let loop ((next-related-derivation-ids
- branch master updated (e0a6c84 -> ac1a4cb), Christopher Baines, 2024/02/02
- 01/14: Remove some time logging,
Christopher Baines <=
- 04/14: Remove even more time logging, Christopher Baines, 2024/02/02
- 02/14: Log the time to call inferior-packages-plus-replacements, Christopher Baines, 2024/02/02
- 05/14: Make sure to keep roots for channel instance derivations, Christopher Baines, 2024/02/02
- 07/14: Add more logging in when computing channel instance derivations, Christopher Baines, 2024/02/02
- 09/14: Split up handling of package description data, Christopher Baines, 2024/02/02
- 10/14: Fix exception handling in call-with-temporary-thread, Christopher Baines, 2024/02/02
- 12/14: Speed up loading package metadata, Christopher Baines, 2024/02/02
- 14/14: Cleanup some with-time-logging, Christopher Baines, 2024/02/02
- 06/14: Add some time logging in to inferior-packages-plus-replacements, Christopher Baines, 2024/02/02
- 11/14: Ignore inferior-protocol-error when computing channel instances, Christopher Baines, 2024/02/02