uninstallOrThrow

@JvmStatic
inline fun uninstallOrThrow(log: Log)(source)

Uninstall the Log instance, or a Log instance containing the same Log.uid as the one provided.

Parameters

log

The Log instance to uninstall.

See also

Throws

IllegalStateException

If a Log instance, either the one provided or one containing the same Log.uid, was not uninstalled.


@JvmStatic
inline fun uninstallOrThrow(uid: String)(source)

Uninstall a Log instance.

Return

true if a Log instance with a Log.uid matching the one provided was uninstalled. false otherwise.

Parameters

uid

The Log.uid of the instance to uninstall.

See also

Throws

IllegalStateException

If a Log instance with a Log.uid matching the provided one was not uninstalled.