aboutsummaryrefslogtreecommitdiffstats
path: root/lib/odbc/src/odbc_debug.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/odbc/src/odbc_debug.erl')
-rw-r--r--lib/odbc/src/odbc_debug.erl43
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/odbc/src/odbc_debug.erl b/lib/odbc/src/odbc_debug.erl
new file mode 100644
index 0000000000..a2e5e5dff3
--- /dev/null
+++ b/lib/odbc/src/odbc_debug.erl
@@ -0,0 +1,43 @@
+%%%-------------------------------------------------------------------
+%%% File : odbc_debug.erl
+%%% Author : Ingela Anderton Andin <[email protected]>
+%%% Description : Issuse standard tracing on an odbc connection process
+%%%
+%%% Created : 12 Dec 2003 by Ingela Anderton Andin <[email protected]>
+%%%-------------------------------------------------------------------
+-module(odbc_debug).
+
+-export([trace_odbc/2]).
+
+%%%========================================================================
+%%% Debug functions
+%%%========================================================================
+
+%%--------------------------------------------------------------------------
+%% trace_odbc(Process, OnOff, <Level>) -> ok
+%% Process - pid() | Name | {global, Name} | {Name, Node}
+%% OnOff - on | off
+%% Level - exported | all
+%% Description: Turns on tracing of messages sent and recived by
+%% the server <Process> and tracing on all, or all exported
+%% functions, according to level <Level>, in this module.
+%% Result will be printed on stdout.
+%%--------------------------------------------------------------------------
+trace_odbc(Process, OnOff) ->
+ trace_odbc(Process, OnOff, exported).
+
+trace_odbc(Process, on, exported) ->
+ dbg:tracer(),
+ dbg:tp(odbc, [{'_', [], [{return_trace}]}]),
+ dbg:p(Process, [call, m]),
+ ok;
+
+trace_odbc(Process, on, all) ->
+ dbg:tracer(),
+ dbg:tpl(odbc, [{'_', [], [{return_trace}]}]),
+ dbg:p(Process, [call, m]),
+ ok;
+
+trace_odbc(_Process, off, _Level) ->
+ dbg:stop(),
+ ok.