Skip to content

Commit 48b6f0e

Browse files
Sanskriti LalSanskriti Lal
Sanskriti Lal
authored and
Sanskriti Lal
committed
Added an option in the db-drawer tool that allows users to export the visualized database schema as a PDF or PNG file
1 parent 822a353 commit 48b6f0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function startProcess() {
9999
processExited = false;
100100
childProcess.on('close', () => {
101101
processExited = true;
102-
console.log('Server restarting');
102+
console.log('server restarting');
103103
});
104104
childProcess.on('error', () => {
105105
processExited = true;
@@ -116,7 +116,7 @@ function watchFiles() {
116116
fs.watchFile(dir, { interval: 1000 }, (curr, prev) => {
117117
// Check if file content has changed
118118
if (curr.mtime !== prev.mtime) {
119-
console.log("Files modified...");
119+
console.log("files modified...");
120120
clearTimeout(previousReloadTimer);
121121
previousReloadTimer = setTimeout(async () => {
122122
await reload();

0 commit comments

Comments
 (0)