diff options
author | 2006-05-29 18:00:02 +0000 | |
---|---|---|
committer | 2006-05-29 18:00:02 +0000 | |
commit | c76dba03d2e1939af5fb65d8640812aa9da25149 (patch) | |
tree | bfc04a26c8b4b3a7302b78d653a9d3aa5fe20592 | |
parent | fix option string (diff) | |
download | wireguard-openbsd-c76dba03d2e1939af5fb65d8640812aa9da25149.tar.xz wireguard-openbsd-c76dba03d2e1939af5fb65d8640812aa9da25149.zip |
add trace messages for debugging purpose
-rw-r--r-- | usr.bin/cvs/getlog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 0217a30bcc8..c4c9c8afad9 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.59 2006/05/29 06:29:49 joris Exp $ */ +/* $OpenBSD: getlog.c,v 1.60 2006/05/29 18:00:02 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -94,6 +94,8 @@ cvs_log_local(struct cvs_file *cf) struct rcs_access *acp; char numb[32], timeb[32]; + cvs_log(LP_TRACE, "cvs_log_local(%s)", cf->file_path); + cvs_file_classify(cf, 0); if (cf->file_status == FILE_UNKNOWN) { |