Merge pull request #43529 from teto/traceValSeq

lib.debug: fix traceValSeqFn
This commit is contained in:
Silvan Mosberger
2018-07-15 23:56:30 +02:00
committed by GitHub

View File

@@ -77,7 +77,7 @@ rec {
(modify depth snip x)) y;
/* A combination of `traceVal` and `traceSeq` */
traceValSeqFn = f: v: traceVal f (builtins.deepSeq v v);
traceValSeqFn = f: v: traceValFn f (builtins.deepSeq v v);
traceValSeq = traceValSeqFn id;
/* A combination of `traceVal` and `traceSeqN`. */