aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/src/orber_ifr.erl
diff options
context:
space:
mode:
authorGustav Simonsson <[email protected]>2012-01-27 16:37:16 +0100
committerGustav Simonsson <[email protected]>2012-01-27 16:37:16 +0100
commitdf9f0c0886b833dcbf23cbaf061a2093af217905 (patch)
tree430403449083e6489bf47bcac77149b60377351f /lib/orber/src/orber_ifr.erl
parent9d2a2e3db06e861045e51ca3cc8adb9cf8fc467d (diff)
downloadotp-df9f0c0886b833dcbf23cbaf061a2093af217905.tar.gz
otp-df9f0c0886b833dcbf23cbaf061a2093af217905.tar.bz2
otp-df9f0c0886b833dcbf23cbaf061a2093af217905.zip
Add parameter to error message string format
One string template had 5 parameters but the parameter list only contained 4. Calls to orber_ifr:get_module/2 should now not create malformed error messages if entry is not found in Mnesia.
Diffstat (limited to 'lib/orber/src/orber_ifr.erl')
-rw-r--r--lib/orber/src/orber_ifr.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/orber/src/orber_ifr.erl b/lib/orber/src/orber_ifr.erl
index c23374cd68..6799bc1db4 100644
--- a/lib/orber/src/orber_ifr.erl
+++ b/lib/orber/src/orber_ifr.erl
@@ -478,7 +478,7 @@ get_module(Id, Type) ->
What ->
orber:dbg("[~p] ~p:get_module(~p, ~p).~n"
"Id doesn't exist, mismatch Id vs Type or DB error: ~p",
- [?LINE, ?MODULE, Id, What], ?DEBUG_LEVEL),
+ [?LINE, ?MODULE, Id, Type, What], ?DEBUG_LEVEL),
corba:raise(#'MARSHAL'{completion_status=?COMPLETED_MAYBE})
end.