Platform

Platform

  • Getting Started
  • API

›Android SDK

Getting Started

  • Create Your App

Quick Starts

  • 555 Samples

Mobile SDK (v1.0)

  • Overview
  • IOS SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept video call
    • How to set log level for SDK
    • Release Notes

    Android SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept video call
    • How to set log level for SDK
    • Release Notes

Mobile SDK (v2.0)

  • Overview
  • IOS SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept VIDEO call
    • How to initiate or join ANONYMOUS VIDEO call
    • Release Notes
    • Reference code - How to initiate or accept PSTN Call
    • Reference code - How to initiate or accept Video Call
    • Reference code - How to initiate or join Anonymous Video Call

    Android SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to intiate or accept Video Call
    • How to intiate or accept ANONYMOUS VIDEO Call
    • Release Notes
    • Reference code - How to initiate or accept PSTN Call
    • Reference code - How to initiate or accept Video Call
    • Reference code - How to initiate or join Anonymous Video Call

    React Native SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • Release Notes

WebRTC JS SDK

  • Overview
  • Getting Started
  • How to do user authentication
  • How to subscribe for notifications
  • How to initialize SDK
  • How to initiate or accept PSTN call
  • How to initiate or accept video call
  • How to create a screen share session
  • Release Notes

Set log level for SDK

Logging can be enabled and levels can be set using LoggingAdditional class. Logs can be printed to console or to a File. By default, No Log is used. There are the 6 log levels:

  • No Log
  • Error
  • Warning
  • Info
  • Debug
  • Verbose

To enable logging, follow the steps below.

  1. Import the following classes in implementation file.

     import com.comcast.irisrtcsdk.Logger;
     import com.comcast.irisrtcsdk.LoggingAdditional;
     import com.comcast.irisrtcsdk.log;
    
  2. Decide the logging level from log class in the implementation file.
    Log levels: NO_LOG, ERROR, WARN, INFO, DEBUG, VERBOSE

    static const int irisLogLevel = log.DEBUG;
    
  3. To enable console logging, use ConsoleLogger class and to write logs to a file, use FileLogging class. Below code shows how to use ConsoleLogging class.

        ... 
        ... 
        //To set console logging
        LoggingAdditional logger = new LoggingAdditional(ConsoleLogger.sharedInstance, appContext);
        //To set severity level
        logger.setLogLevel(irisLogLevel);
        ... 
        ... 
    
← How to initiate or accept video callRelease Notes →
Docs
Getting StartedGuidesAPI Reference
More
BlogGitHub
555 Platform
Copyright © 2024 555 Platform ™
555docs-v0.0.94