Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2007-01-08 14:33:16 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-01-08 14:33:16 (GMT)
commit64135b8c178595cba4696564a83134b0568a75ea (patch)
tree55ee5af9006927e5524c4ed59fee3a78e9e9f628
parentf73d97d345def78d385a1fd8a95d39f1139998b8 (diff)
Remove obsolete documentation.
2007-01-08 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * doc/debugging.txt: Remove obsolete documentation. svn path=/trunk/; revision=2200
-rw-r--r--ChangeLog6
-rw-r--r--doc/debugging.txt51
2 files changed, 6 insertions, 51 deletions
diff --git a/ChangeLog b/ChangeLog
index 599be16..e118c34 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2007-01-08 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+ * doc/debugging.txt:
+
+ Remove obsolete documentation.
+
+2007-01-08 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
* Makefile.am:
* backend/Makefile.am:
* backend/comics/Makefile.am:
diff --git a/doc/debugging.txt b/doc/debugging.txt
deleted file mode 100644
index ad34cfd..0000000
--- a/doc/debugging.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-To enable debugging use the configure option --enable-debug.
-
-LOGGING
-=======
-
-At execution time, you must enable the log service. To enable the
-log service, set the environment variable: EV_LOG_MODULES
-
-EV_LOG_MODULES variable has the form:
-
- <moduleName>[:<moduleName>]*
-
-moduleName is a filename.
-ex: export EV_LOG_MODULES=ev-window.c:ev-view.c
-The special log module "all" enables all log modules.
-
-Use the LOG macro to put debug messages in the code.
-
-WARNINGS
-========
-
-At execution time, you must enable the service. To enable you to debug
-warnings, set the environment variable: EV_DEBUG_BREAK
-
-Possibe value for EV_DEBUG_BREAK variable:
-
- stack Prints a stack trace.
-
- suspend Use this to stop execution when a warning occurs.
- You can then attach a debugger to the process.
-
- trap Use this while running evince in a debugger.
- This makes execution stop and gives back control to
- the debugger.
-
-
-PROFILING
-=========
-
-At execution time, you must enable the profiling service. To enable the
-profiling service, set the environment variable: EV_PROFILING_MODULES
-
-EV_PROFILE_MODULES variable has the form:
-
- <moduleName>[:<moduleName>]*
-
-moduleName is a filename.
-ex: export EV_PROFILE_MODULES=ephy-window.c:ephy-autocompletion.c
-The special profiling module "all" enables all profiling modules.
-
-Use START_PROFILER STOP_PROFILER macros to profile pieces of code.