Skip to content

Commit

Permalink
Update PR
Browse files Browse the repository at this point in the history
* Complete 'u' spelling changes
* Complete 'v' spelling changes
* Complete 'w' spelling changes
* Complete 'x' spelling changes
* Complete 'y' spelling changes
* Complete 'z' spelling changes
  • Loading branch information
abraunegg committed Nov 4, 2024
1 parent 5803d71 commit 15124af
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 5 deletions.
39 changes: 39 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -366,3 +366,42 @@ timerfd
tlsv
Tting
typecons
uda
ulnow
uload
ultotal
undefiened
unistd
unittests
urlify
userinfo
usermod
userns
userpass
usl
valgrind
vti
wal
websockets
webtemplate
weburl
Werror
wpath
writefln
wrt
wtf
xca
xcbac
xdeadbeef
xdg
xlaunch
xof
xored
XXYYZZ
yann
yourapp
yourdomain
yourfile
yourprogram
Zorin
zypper
8 changes: 4 additions & 4 deletions src/main.d
Original file line number Diff line number Diff line change
Expand Up @@ -1013,23 +1013,23 @@ int main(string[] cliArgs) {
// the full output of what is occurring is done. This is done to lessen the 'verbosity' of non-verbose
// logging, but only when running in --monitor
if (monitorLogOutputLoopCount > logOutputSuppressionInterval) {
// unsurpress the logging output
// re-enable the logging output as required
monitorLogOutputLoopCount = 1;
if (debugLogging) {addLogEntry("Unsuppressing initial sync log output", ["debug"]);}
if (debugLogging) {addLogEntry("Allowing initial sync log output", ["debug"]);}
appConfig.suppressLoggingOutput = false;
} else {
// do we suppress the logging output to absolute minimal
if (monitorLoopFullCount == 1) {
// application startup with --monitor
if (debugLogging) {addLogEntry("Unsuppressing initial sync log output", ["debug"]);}
if (debugLogging) {addLogEntry("Allowing initial sync log output", ["debug"]);}
appConfig.suppressLoggingOutput = false;
} else {
// only suppress if we are not doing --verbose or higher
if (appConfig.verbosityCount == 0) {
if (debugLogging) {addLogEntry("Suppressing --monitor log output", ["debug"]);}
appConfig.suppressLoggingOutput = true;
} else {
if (debugLogging) {addLogEntry("Unsuppressing log output", ["debug"]);}
if (debugLogging) {addLogEntry("Allowing log output", ["debug"]);}
appConfig.suppressLoggingOutput = false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/sync.d
Original file line number Diff line number Diff line change
Expand Up @@ -7666,7 +7666,7 @@ class SyncEngine {

if (!itemDB.selectByPath(dirName(newPath), appConfig.defaultDriveId, parentItem)) {
// the parent item is not in the database
throw new SyncException("Can't move an item to an unsynced directory");
throw new SyncException("Can't move an item to an unsynchronised directory");
}

if (oldItem.driveId != parentItem.driveId) {
Expand Down

0 comments on commit 15124af

Please sign in to comment.