From 1073b1780a68522a5cad0fe0e1e6735365034118 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 13 Dec 2006 14:29:05 +0000 Subject: [PATCH] * Remove debug message. --- src/libexpr/primops.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 84d9f5a13c..17fc6b5231 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -739,7 +739,6 @@ struct FilterFromExpr : PathFilter bool operator () (const Path & path) { - printMsg(lvlError, format("filter %1%") % path); Expr call = makeCall(filter, makePath(toATerm(path))); return evalBool(state, call); }