We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf74a9 commit 87dcd4dCopy full SHA for 87dcd4d
1 file changed
pyrogram/crypto/aes.py
@@ -23,7 +23,11 @@
23
try:
24
import tgcrypto
25
except ImportError:
26
- logging.warning("Warning: TgCrypto is missing")
+ logging.warning(
27
+ "TgCrypto is missing! "
28
+ "Pyrogram will work the same, but at a much slower speed. "
29
+ "More info: https://docs.pyrogram.ml/resources/TgCrypto"
30
+ )
31
is_fast = False
32
import pyaes
33
else:
0 commit comments