We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09984b3 commit 56df797Copy full SHA for 56df797
1 file changed
src/main.d
@@ -1162,7 +1162,11 @@ int main(string[] cliArgs) {
1162
if (!appConfig.getValueBool("download_only")) {
1163
// Not using --download-only
1164
try {
1165
- addLogEntry("Initialising filesystem event monitoring ...", ["info", "notify"]);
+ version (OSX) {
1166
+ addLogEntry("Initialising filesystem FSEvents monitoring ...", ["info", "notify"]);
1167
+ } else {
1168
+ addLogEntry("Initialising filesystem inotify monitoring ...", ["info", "notify"]);
1169
+ }
1170
filesystemMonitor.initialise();
1171
addLogEntry("Performing initial synchronisation to ensure consistent local state ...");
1172
} catch (MonitorException e) {
0 commit comments