aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/src/observer.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2014-03-28 10:13:21 +0100
committerDan Gudmundsson <[email protected]>2014-03-28 10:13:21 +0100
commite3f9bf8dbfe4e055753f04125406d29af0ae1050 (patch)
tree7f56c99e508b1d14a08fe5e9a757ddf4453d414c /lib/observer/src/observer.erl
parent95ffe7eb374f59ce3f289747212adf042c1cd703 (diff)
parenta7d0e35b834f9b0d9538c75d06dfe3d698a83ded (diff)
downloadotp-e3f9bf8dbfe4e055753f04125406d29af0ae1050.tar.gz
otp-e3f9bf8dbfe4e055753f04125406d29af0ae1050.tar.bz2
otp-e3f9bf8dbfe4e055753f04125406d29af0ae1050.zip
Merge branch 'dgud/observer/test'
* dgud/observer/test: observer: Add simple test and add debug hooks in app
Diffstat (limited to 'lib/observer/src/observer.erl')
-rw-r--r--lib/observer/src/observer.erl7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/observer/src/observer.erl b/lib/observer/src/observer.erl
index 098100e8ee..a30ceecc63 100644
--- a/lib/observer/src/observer.erl
+++ b/lib/observer/src/observer.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2011. All Rights Reserved.
+%% Copyright Ericsson AB 2011-2014. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -18,8 +18,11 @@
-module(observer).
--export([start/0]).
+-export([start/0, stop/0]).
start() ->
observer_wx:start().
+
+stop() ->
+ observer_wx:stop().