> For the complete documentation index, see [llms.txt](https://adityabavadekar.gitbook.io/pinlog-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://adityabavadekar.gitbook.io/pinlog-docs/reference/library-reference/methods.md).

# Methods

| Method          | Use                 | Example                                  |
| --------------- | ------------------- | ---------------------------------------- |
| `PinLog.logI()` | Adds a info log.    | `PinLog.logI("TAG","Info")`              |
| `PinLog.logW()` | Adds a warning log. | `PinLog.logW("TAG","Warn")`              |
| `PinLog.logE()` | Adds an error log.  | `PinLog.logE("TAG","Error",Exception())` |
| `PinLog.logD()` | Adds a debug log.   | `PinLog.logD("TAG","Debug")`             |
