removed extra logging

pull/875/head
Tarun Singh 3 years ago
parent 3f5133d1ba
commit 3306f4a8e0

@ -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…
Cancel
Save