update banners to absolute paths

Signed-off-by: Lorenzo Lewis <lorenzo_lewis@icloud.com>
This commit is contained in:
Lorenzo Lewis
2023-07-28 19:47:34 +01:00
parent 7cc86edae8
commit c8b8f9309e
27 changed files with 93 additions and 93 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
![plugin-log](banner.png)
![plugin-log](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/log/banner.png)
Configurable logging for your Tauri app.
@@ -66,14 +66,14 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript
import { trace, info, error, attachConsole } from "@tauri-apps/plugin-log";
import { trace, info, error, attachConsole } from '@tauri-apps/plugin-log';
// with LogTarget::Webview enabled this function will print logs to the browser console
const detach = await attachConsole();
trace("Trace");
info("Info");
error("Error");
trace('Trace');
info('Info');
error('Error');
// detach the browser console from the log stream
detach();