Skip to content

Commit

Permalink
removed verbose outputs in logic tests so that they pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Francis Kafieh committed Aug 12, 2024
1 parent e57c987 commit e7b1f5f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/logic/log_note/getFinalNoteContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { ReplacementDictionary } from "../../interfaces/ReplacementDictionary";
import { Settings } from "../../interfaces/Settings";
import { Vault } from "../../interfaces/Vault";
import { ListType } from "../../types";
import { consoleWarnIfVerboseMode } from "../../utils/alerter";
import { fillLineXToYWithContent } from "./fillLineXToYWithContent";
import { getDividerPositions } from "./getDividerPositions";
import { getFill } from "./getFill";
Expand All @@ -26,11 +25,6 @@ export function getFinalNoteContent(
dividerPositions.created.start === -1 ||
dividerPositions.created.end === -1
) {
consoleWarnIfVerboseMode(
"auto creating created divider...",
settings.verboseModeEnabled,
);

contentByLine.push("%% LIST CREATED %%");
contentByLine.push("%% END %%");

Expand All @@ -45,10 +39,6 @@ export function getFinalNoteContent(
dividerPositions.modified.start === -1 ||
dividerPositions.modified.end === -1
) {
consoleWarnIfVerboseMode(
"auto creating modified divider...",
settings.verboseModeEnabled,
);
contentByLine.push("%% LIST MODIFIED %%");
contentByLine.push("%% END %%");

Expand All @@ -63,10 +53,6 @@ export function getFinalNoteContent(
dividerPositions.deleted.start === -1 ||
dividerPositions.deleted.end === -1
) {
consoleWarnIfVerboseMode(
"auto creating deleted divider...",
settings.verboseModeEnabled,
);
contentByLine.push("%% LIST DELETED %%");
contentByLine.push("%% END %%");

Expand Down

0 comments on commit e7b1f5f

Please sign in to comment.