Skip to content

Commit

Permalink
Removed most Telegram library log messages (#4650)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylianst committed Oct 22, 2022
1 parent b7f8e52 commit a94d7fa
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions meshmessaging.js
Expand Up @@ -48,12 +48,8 @@ module.exports.CreateServer = function (parent) {
const input = require('input');
const stringSession = new StringSession(parent.config.messaging.telegram.session);
const client = new TelegramClient(stringSession, parent.config.messaging.telegram.apiid, parent.config.messaging.telegram.apihash, { connectionRetries: 5 });
await client.start({
phoneNumber: async function () { await input.text("Please enter your number: "); },
password: async function () { await input.text("Please enter your password: "); },
phoneCode: async function () { await input.text("Please enter the code you received: "); },
onError: function (err) { console.log('Telegram error', err); },
});
client.setLogLevel('none');
await client.start({ onError: function (err) { console.log('Telegram error', err); } });
obj.telegramClient = client;
obj.providers += 1; // Enable Telegram messaging
console.log("MeshCentral Telegram client is connected.");
Expand Down Expand Up @@ -177,7 +173,8 @@ module.exports.SetupTelegram = async function (parent) {
const { StringSession } = require('telegram/sessions');
const input = require('input');
const stringSession = new StringSession('');
const client = new TelegramClient(stringSession, parent.config.messaging.telegram.apiid, parent.config.messaging.telegram.apihash, { connectionRetries: 5 });
const client = new TelegramClient(stringSession, parent.config.messaging.telegram.apiid, parent.config.messaging.telegram.apihash, { connectionRetries: 5, logLevel: 'none' });
client.setLogLevel('none');
await client.start({
phoneNumber: async function () { return await input.text("Please enter your number (+1-111-222-3333): "); },
password: async function () { return await input.text("Please enter your password: "); },
Expand Down

0 comments on commit a94d7fa

Please sign in to comment.