Giter VIP home page Giter VIP logo

Comments (5)

 avatar commented on July 2, 2024
airgram error 15:16:24.504 [Client] [updateShort]: [38] handleUpdateChannelState() chat "1142964287" not found {} +0ms

This error means that the chat does not found in the local storage and so can not be updated.
It can be happen if you delete the message from a channel just after start of telegram client (before getting difference). In the most cases you may ignore this error. If you need to load the chat state, call airgram.updates.getDifference().

airgram error 15:26:08.761 [Client] [updates.channelDifferenceEmpty]: [85] handle() "updates.channelDifferenceEmpty" channel "undefined" not found {} +4m

I don't know why channel is undefined. It depends on your previous operations. Could you attach here the debug log? Do not forget to remove sensitive data.

from airgram.

AshwinTayson avatar AshwinTayson commented on July 2, 2024

Is there a way to turn off Logger? I'm not worried about channel deleting messages. When I'm in development I can turn on debug mode

from airgram.

 avatar commented on July 2, 2024

You may implement and inject your own logger:

import { ag, Airgram, TYPES } from 'airgram'
import BaseLogger from 'airgram/base/Logger'
import { injectable } from 'inversify'

@injectable()
class DevNullLogger extends BaseLogger {
  protected log (level, message) {
    // do nothing
  }
}

const airgram = new Airgram(/* config */)

airgram.bind<ag.Logger>(TYPES.Logger).to(DevNullLogger)

from airgram.

AshwinTayson avatar AshwinTayson commented on July 2, 2024

My project is Javascript based. Can you tell me how I can use injectable for JS?

I tried this

const BaseLogger = require('airgram/base/Logger')

class DevNullLogger extends BaseLogger {
  log (level, message) {
    // do nothing
  }
}

const airgram = new Airgram({id: process.env.APP_ID, hash: process.env.APP_HASH})
airgram.bind(TYPES.Logger).to(DevNullLogger)

And It throws

Class extends value #<Object> is not a constructor or null

for extends BaseLogger

Update:

Even after including babel and reconfiguring, it throws this error.
TypeError: Super expression must either be null or a function

Last Update
Fixed it by extending DebugLogger instead of BaseLogger. This issue gave me alot of insight of why different libraries like webpack, babel are combined together and how they are simplifying our dev job. I apologise if these issues are not relevant to this library. Hope someone finds this useful.

from airgram.

 avatar commented on July 2, 2024

Please try the following code to inject classes in JavaScript:

const inversify = require('inversify')

inversify.decorate(inversify.injectable(), DevNullLogger) // instead of `@injectable()`
airgram.bind(TYPES.Logger).to(DevNullLogger)

from airgram.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.