You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Whether to stream function execution logs. Default: false. Use --logs-filter in addition to this flag to stream specific function logs',
225
+
boolean: true,
226
+
global: false,
227
+
group: 'Logs streaming',
228
+
})
229
+
.option('logs-filter',{
230
+
describe: `Regex pattern to filter logs from only matched functions. E.g. to stream logs for a function, specify it's name, and to stream logs from all functions starting with auth specify 'auth' Default: Stream all logs`,
231
+
array: true,
232
+
type: 'string',
233
+
group: 'Logs streaming',
234
+
implies: ['stream-function-logs'],
235
+
requiresArg: true,
236
+
})
237
+
.option('logs-out-file',{
238
+
describe:
239
+
'File to append the streaming logs. The file is created if it does not exist. Default: stdout',
0 commit comments