]> Entropealabs - wampex_router.git/commitdiff
more logging
authorChristopher <chris@entropealabs.com>
Thu, 16 Apr 2020 14:03:58 +0000 (09:03 -0500)
committerChristopher <chris@entropealabs.com>
Thu, 16 Apr 2020 14:03:58 +0000 (09:03 -0500)
lib/router/realms/session.ex

index 36b0af0f008484331efd2e2eba2546cb3f3321bf..0df69dc1c7da0758219fc19d143632d85206d81d 100644 (file)
@@ -17,6 +17,8 @@ defmodule Wampex.Router.Realms.Session do
   end
 
   def callees(db, realm, procedure) do
+    Logger.info("Getting callees for #{inspect(procedure)} in realm #{inspect(realm)}")
+
     with {_key, callees} <- ClusterKV.get(db, realm, procedure, 500),
          {_key, [callee_index]} <- ClusterKV.get(db, realm, "#{procedure}:callee_index") do
       {callees, callee_index}