[nemiver] Add more logs



commit 0567d698550b0d79fb1bd6065392b1461013c257
Author: Dodji Seketeli <dodji redhat com>
Date:   Tue Aug 11 16:59:42 2009 +0200

    Add more logs
    
    	* src/uicommon/nmv-source-editor.cc:
    	(SourceEditor::move_where_marker_to_line,
    	 SourceEditor::set_visual_breakpoint_at_line): Add more logs.

 src/uicommon/nmv-source-editor.cc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/uicommon/nmv-source-editor.cc b/src/uicommon/nmv-source-editor.cc
index 2d0eb9b..184260a 100644
--- a/src/uicommon/nmv-source-editor.cc
+++ b/src/uicommon/nmv-source-editor.cc
@@ -408,6 +408,8 @@ SourceEditor::current_column (gint &a_col)
 void
 SourceEditor::move_where_marker_to_line (int a_line, bool a_do_scroll)
 {
+    LOG_DD ("a_line: " << a_line);
+
     THROW_IF_FAIL (a_line >= 0) ;
 
     Gtk::TextIter line_iter =
@@ -503,6 +505,7 @@ SourceEditor::set_visual_breakpoint_at_line (int a_line, bool enabled)
     // marker doesn't yet exist, so create one of the correct type
     Gtk::TextIter iter =
         source_view ().get_source_buffer ()->get_iter_at_line (a_line) ;
+    LOG_DD ("a_line: " << a_line);
     THROW_IF_FAIL (iter) ;
     UString marker_name = UString::from_int (a_line);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]