capacitor-remote-logger
v1.2.0
Published
A capacitor plugin for remote logging.
Readme
capacitor-remote-logger
A capacitor plugin for remote logging.
Install
npm install capacitor-remote-logger
npx cap syncAPI
echo(...)
echo(options: { value: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | ------------------------------- |
| options | { value: string; } |
Returns: Promise<{ value: string; }>
d(...)
d(options: { tag: string; message: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | ---------------------------------------------- |
| options | { tag: string; message: string; } |
Returns: Promise<{ value: string; }>
e(...)
e(options: { tag: string; message: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | ---------------------------------------------- |
| options | { tag: string; message: string; } |
Returns: Promise<{ value: string; }>
connect(...)
connect(options: { url: string; reconnectDelay?: number; }) => Promise<void>| Param | Type |
| ------------- | ------------------------------------------------------ |
| options | { url: string; reconnectDelay?: number; } |
log(...)
log(options: { level: string; tag: string; message: string; }) => Promise<void>| Param | Type |
| ------------- | ------------------------------------------------------------- |
| options | { level: string; tag: string; message: string; } |
disconnect()
disconnect() => Promise<void>