Skip to content

Commit

Permalink
fix: devtools start log
Browse files Browse the repository at this point in the history
closes: #24
  • Loading branch information
northword committed May 14, 2024
1 parent f7c79ee commit 03939dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,7 @@ export default class Serve extends Base {
zoteroProcess.stdout?.on("data", (data) => {
if (
!isZoteroReady &&
data
.toString()
.includes(`Calling bootstrap method 'startup' for plugin ${this.id}`)
data.toString().includes(`Plugin ${this.id} startup`)
) {
this.logger.log(data.toString());
isZoteroReady = true;
Expand Down

0 comments on commit 03939dd

Please sign in to comment.