From 59f6ffb863b7121b8a49c13dd64f9943ddaf7ed0 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 19 Jul 2008 23:28:54 -0400 Subject: [PATCH] Added a tracing statement. --- textual.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/textual.cc b/textual.cc index 614172ab..5517a6b2 100644 --- a/textual.cc +++ b/textual.cc @@ -579,9 +579,11 @@ unsigned int textual_parser_t::parse(std::istream& in, account_stack.push_front(master); - pathname = journal->sources.back(); - src_idx = journal->sources.size() - 1; - linenum = 1; + pathname = journal->sources.back(); + src_idx = journal->sources.size() - 1; + linenum = 1; + + INFO("Parsing file '" << pathname.string() << "'"); unsigned long beg_pos = in.tellg(); unsigned long end_pos;