@@ -161,7 +161,7 @@ struct Outset: ParsableCommand {
161
161
// perform log file rotation
162
162
performLogRotation ( logFolderPath: logDirectory, logFileBaseName: logFileName, maxLogFiles: logFileMaxCount)
163
163
164
- writeLog ( " Processing scheduled runs for boot " , logLevel: . debug )
164
+ writeLog ( " Processing scheduled runs for boot " , logLevel: . info )
165
165
ensureWorkingFolders ( )
166
166
167
167
writeOutsetPreferences ( prefs: prefs)
@@ -190,15 +190,15 @@ struct Outset: ParsableCommand {
190
190
}
191
191
192
192
if loginWindow {
193
- writeLog ( " Processing scheduled runs for login window " , logLevel: . debug )
193
+ writeLog ( " Processing scheduled runs for login window " , logLevel: . info )
194
194
195
195
if !folderContents( path: loginWindowDir) . isEmpty {
196
196
processItems ( loginWindowDir)
197
197
}
198
198
}
199
199
200
200
if login {
201
- writeLog ( " Processing scheduled runs for login " , logLevel: . debug )
201
+ writeLog ( " Processing scheduled runs for login " , logLevel: . info )
202
202
if !prefs. ignoredUsers. contains ( consoleUser) {
203
203
if !folderContents( path: loginOnceDir) . isEmpty {
204
204
processItems ( loginOnceDir, once: true , override: prefs. overrideLoginOnce)
@@ -214,7 +214,7 @@ struct Outset: ParsableCommand {
214
214
}
215
215
216
216
if loginPrivileged {
217
- writeLog ( " Processing scheduled runs for privileged login " , logLevel: . debug )
217
+ writeLog ( " Processing scheduled runs for privileged login " , logLevel: . info )
218
218
if checkFileExists ( path: loginPrivilegedTrigger) {
219
219
pathCleanup ( pathname: loginPrivilegedTrigger)
220
220
}
@@ -231,7 +231,7 @@ struct Outset: ParsableCommand {
231
231
}
232
232
233
233
if onDemand {
234
- writeLog ( " Processing on-demand " , logLevel: . debug )
234
+ writeLog ( " Processing on-demand " , logLevel: . info )
235
235
if !folderContents( path: onDemandDir) . isEmpty {
236
236
if ![ " root " , " loginwindow " ] . contains ( consoleUser) {
237
237
let currentUser = NSUserName ( )
@@ -248,7 +248,7 @@ struct Outset: ParsableCommand {
248
248
}
249
249
250
250
if loginEvery {
251
- writeLog ( " Processing scripts in login-every " , logLevel: . debug )
251
+ writeLog ( " Processing scripts in login-every " , logLevel: . info )
252
252
if !prefs. ignoredUsers. contains ( consoleUser) {
253
253
if !folderContents( path: loginEveryDir) . isEmpty {
254
254
processItems ( loginEveryDir)
@@ -257,7 +257,7 @@ struct Outset: ParsableCommand {
257
257
}
258
258
259
259
if loginOnce {
260
- writeLog ( " Processing scripts in login-once " , logLevel: . debug )
260
+ writeLog ( " Processing scripts in login-once " , logLevel: . info )
261
261
if !prefs. ignoredUsers. contains ( consoleUser) {
262
262
if !folderContents( path: loginOnceDir) . isEmpty {
263
263
processItems ( loginOnceDir, once: true , override: prefs. overrideLoginOnce)
@@ -268,7 +268,7 @@ struct Outset: ParsableCommand {
268
268
}
269
269
270
270
if cleanup {
271
- writeLog ( " Cleaning up on-demand directory. " , logLevel: . debug )
271
+ writeLog ( " Cleaning up on-demand directory. " , logLevel: . info )
272
272
if checkFileExists ( path: onDemandTrigger) { pathCleanup ( pathname: onDemandTrigger) }
273
273
if checkFileExists ( path: cleanupTrigger) { pathCleanup ( pathname: cleanupTrigger) }
274
274
if !folderContents( path: onDemandDir) . isEmpty { pathCleanup ( pathname: onDemandDir) }
0 commit comments