diff options
author | Micael Karlberg <[email protected]> | 2012-03-06 11:31:32 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-03-06 11:31:32 +0100 |
commit | c864dc812dc853e101714185b56295a3f314ed01 (patch) | |
tree | 0a6533931209b7efcf8ab0770710deb78fab4a7a /lib/inets/src/inets_app/inets_internal.hrl | |
parent | 725032aabda06c77934b461374b8657963f4ff1c (diff) | |
parent | 66288284701787c7b9e1775ec9bc91732c87f51d (diff) | |
download | otp-c864dc812dc853e101714185b56295a3f314ed01.tar.gz otp-c864dc812dc853e101714185b56295a3f314ed01.tar.bz2 otp-c864dc812dc853e101714185b56295a3f314ed01.zip |
Merge branch 'bmk/inets/inets59_integration' into bmk/inets/inets59_integration2
Diffstat (limited to 'lib/inets/src/inets_app/inets_internal.hrl')
-rw-r--r-- | lib/inets/src/inets_app/inets_internal.hrl | 6 |
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), |