aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/inets_app/inets_internal.hrl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-12-15 11:54:58 +0100
committerMicael Karlberg <[email protected]>2012-02-03 18:22:03 +0100
commit411da4a989320ba7f7b775e696b94df4c6b13c59 (patch)
tree4894f7a4bdff51ff42348e2ff3703919dc74f462 /lib/inets/src/inets_app/inets_internal.hrl
parentc09e8f7c1b7f77ba083d71b13dc02f599a1c1481 (diff)
downloadotp-411da4a989320ba7f7b775e696b94df4c6b13c59.tar.gz
otp-411da4a989320ba7f7b775e696b94df4c6b13c59.tar.bz2
otp-411da4a989320ba7f7b775e696b94df4c6b13c59.zip
[inets] Moved (dbg) trace utility functions to own module (inets_trace)
Diffstat (limited to 'lib/inets/src/inets_app/inets_internal.hrl')
-rw-r--r--lib/inets/src/inets_app/inets_internal.hrl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inets/src/inets_app/inets_internal.hrl b/lib/inets/src/inets_app/inets_internal.hrl
index 55c3669e4a..e56af3b59d 100644
--- a/lib/inets/src/inets_app/inets_internal.hrl
+++ b/lib/inets/src/inets_app/inets_internal.hrl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2005-2009. All Rights Reserved.
+%% Copyright Ericsson AB 2005-2011. 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
@@ -24,8 +24,8 @@
%% Various trace macros
-define(report(Severity, Label, Service, Content),
- inets:report_event(Severity, Label, Service,
- [{module, ?MODULE}, {line, ?LINE} | Content])).
+ inets_trace:report_event(Severity, Label, Service,
+ [{module, ?MODULE}, {line, ?LINE} | Content])).
-define(report_important(Label, Service, Content),
?report(20, Label, Service, Content)).
-define(report_verbose(Label, Service, Content),