| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
See console.log and its siblings as well as exceptions throw from another place.
Initially develop to help on mobile debug of logs, mostly for Safari or iOS Browser. But you can use as you wish.
Logs may live no more than 3/4 days at our database.
npm i @schirrel/remote-logger yarn add @schirrel/remote-loggerhttps://cdn.jsdelivr.net/gh/schirrel/remote-logger@main/lib/remote-logger.min.jsGenerate your logger id at https://remote-logger.web.app/
Setup it on you app and watch the loggers at Watcher.
If installed with npm you need to import
import '@schirrel/remote-logger/lib/remote-logger';The DebugRemoteLogger function is available globally.
DebugRemoteLogger(id: string , options?: {only: []})DebugRemoteLogger("your-generated-id")
// with options
DebugRemoteLogger("your-generated-id", { only: ['info'])
DebugRemoteLogger("your-generated-id", { only: ['warn', 'error'])
DebugRemoteLogger("your-generated-id", { only: ['debug'])
DebugRemoteLogger("your-generated-id", { only: ['error'])| Back | FazBrowse Home | New Git URL |