mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
Update README.md
This commit is contained in:
@@ -478,13 +478,13 @@ Baileys is written, keeping in mind, that you may require other custom functiona
|
|||||||
|
|
||||||
First, enable the logging of unhandled messages from WhatsApp by setting
|
First, enable the logging of unhandled messages from WhatsApp by setting
|
||||||
``` ts
|
``` ts
|
||||||
conn.logLevel = MessageLogLevel.unhandled // set to MessageLogLevel.all to see all messages received
|
conn.logger.level = 'unhandled'
|
||||||
```
|
```
|
||||||
This will enable you to see all sorts of messages WhatsApp sends in the console. Some examples:
|
This will enable you to see all sorts of messages WhatsApp sends in the console. Some examples:
|
||||||
|
|
||||||
1. Functionality to track of the battery percentage of your phone.
|
1. Functionality to track of the battery percentage of your phone.
|
||||||
You enable logging and you'll see a message about your battery pop up in the console:
|
You enable logging and you'll see a message about your battery pop up in the console:
|
||||||
``` [Baileys] [Unhandled] s22, ["action",null,[["battery",{"live":"false","value":"52"},null]]] ```
|
```s22, ["action",null,[["battery",{"live":"false","value":"52"},null]]] ```
|
||||||
|
|
||||||
You now know what a battery update looks like. It'll have the following characteristics.
|
You now know what a battery update looks like. It'll have the following characteristics.
|
||||||
- Given ```const bMessage = ["action",null,[["battery",{"live":"false","value":"52"},null]]]```
|
- Given ```const bMessage = ["action",null,[["battery",{"live":"false","value":"52"},null]]]```
|
||||||
@@ -504,7 +504,7 @@ This will enable you to see all sorts of messages WhatsApp sends in the console.
|
|||||||
``` message [0] === "action" && message [1] === null && message[2][0][0] === "battery" ```
|
``` message [0] === "action" && message [1] === null && message[2][0][0] === "battery" ```
|
||||||
2. Functionality to keep track of the pushname changes on your phone.
|
2. Functionality to keep track of the pushname changes on your phone.
|
||||||
You enable logging and you'll see an unhandled message about your pushanme pop up like this:
|
You enable logging and you'll see an unhandled message about your pushanme pop up like this:
|
||||||
```[Baileys] [Unhandled] s24, ["Conn",{"pushname":"adiwajshing"}]```
|
```s24, ["Conn",{"pushname":"adiwajshing"}]```
|
||||||
|
|
||||||
You now know what a pushname update looks like. It'll have the following characteristics.
|
You now know what a pushname update looks like. It'll have the following characteristics.
|
||||||
- Given ```const pMessage = ["Conn",{"pushname":"adiwajshing"}] ```
|
- Given ```const pMessage = ["Conn",{"pushname":"adiwajshing"}] ```
|
||||||
|
|||||||
Reference in New Issue
Block a user