mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-28 06:08:02 +03:00
removed extra logging
This commit is contained in:
parent
3f5133d1ba
commit
3306f4a8e0
1 changed files with 0 additions and 7 deletions
|
@ -93,19 +93,12 @@ exports.pingAsync = function (hostname, ipv6 = false) {
|
|||
exports.mqttAsync = function (hostname, port = undefined, username = undefined, password = undefined, topic, okMessage) {
|
||||
return new Promise((resolve, reject) => {
|
||||
try {
|
||||
console.log({
|
||||
hostname,
|
||||
port,
|
||||
username,
|
||||
password
|
||||
});
|
||||
let client = mqtt.connect(hostname, {
|
||||
port,
|
||||
username,
|
||||
password
|
||||
});
|
||||
client.on("connect", () => {
|
||||
console.log(`Connected to ${hostname}:${port}, ${username}, ${password}`);
|
||||
client.subscribe(topic);
|
||||
});
|
||||
client.on("message", (messageTopic, message) => {
|
||||
|
|
Loading…
Reference in a new issue