Airgram

Guides
/
/
Methods

api.getLogTags()

Returns list of available TDLib internal log tags, for example, ["actor", "binlog", "connections", "notifications", "proxy"]. Can be called synchronously

Returns ApiResponse interface:
interface ApiResponse {
  _: 'getLogTags' | 'error'
  airgram: Airgram
  request: {
    method: 'getLogTags'
  }
  response:  | 
  setState: (nextState: Record<string, unknown>) => void
  getState: () => Record<string, unknown>
}