Skip to content

Commit be7eb6a

Browse files
z2k-gwpmarcusolsson
authored andcommitted
Clarifying how to find the console...
Not immediately obvious
1 parent 8ff208d commit be7eb6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concepts/plugin-anatomy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class ExamplePlugin extends Plugin {
2525

2626
[`onunload()`](../api/classes/Component.md#onunload) runs when the plugin is disabled. Any resources that your plugin is using must be released here to avoid affecting the performance of Obsidian after your plugin has been disabled.
2727

28-
To better understand when these methods are called, you can print a message to the console whenever the plugin loads and unloads.
28+
To better understand when these methods are called, you can print a message to the console whenever the plugin loads and unloads. The console is a valuable "behind the scenes" tool for developers to use to monitor the status of their code. To view the console, press ctrl-shift-i in Windows/Linux, or cmd-option-i on the Mac. Click on the Console Tab in the resultant side window that appears.
2929

3030
```ts {5,8} title="main.ts"
3131
import { Plugin } from "obsidian";

0 commit comments

Comments
 (0)