package usbmux

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Logging provides a type definition for logging options

type log_opts = {
  1. log_conns : bool;
    (*

    Whether to log individual tunnels, both connecting and disconnecting; this can get quite noisy.

    *)
  2. log_async_exn : bool;
    (*

    Whether to log asynchronous exceptions.

    *)
  3. log_plugged_inout : bool;
    (*

    Whether to log when devices are plugged in or out.

    *)
  4. log_everything_else : bool;
    (*

    Whether to log all other events.

    *)
}

Logging options