Add more logging to the QUIC_BUG when no decrypter is available.

gfe-relnote: n/a (More logging)
PiperOrigin-RevId: 247924869
Change-Id: If3c3f957c3e678e4fb19e7589a6fe8852a318609
diff --git a/quic/core/quic_framer.cc b/quic/core/quic_framer.cc
index 7517b18..243529d 100644
--- a/quic/core/quic_framer.cc
+++ b/quic/core/quic_framer.cc
@@ -4363,7 +4363,8 @@
   }
 
   if (decrypter == nullptr) {
-    QUIC_BUG << "Attempting to decrypt without decrypter";
+    QUIC_BUG << "Attempting to decrypt without decrypter, encryption level:"
+             << level << " version:" << version();
     return false;
   }