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
@@ -318,7 +320,7 @@ function validateConfig(serverless, stateMachineName, stateMachineObj, notificat
318
320
}
319
321
320
322
if(stateMachineObj.type==='EXPRESS'){
321
-
serverless.cli.consoleLog(
323
+
log(
322
324
`State machine [${stateMachineName}] : notifications are not supported on Express Workflows. `
323
325
+'Please see https://docs.aws.amazon.com/step-functions/latest/dg/concepts-standard-vs-express.html for difference between Step Functions Standard and Express Workflow.',
324
326
);
@@ -330,7 +332,7 @@ function validateConfig(serverless, stateMachineName, stateMachineObj, notificat
330
332
);
331
333
332
334
if(error){
333
-
serverless.cli.consoleLog(
335
+
log(
334
336
`State machine [${stateMachineName}] : notifications config is malformed. `
335
337
+'Please see https://github.com/horike37/serverless-step-functions for examples. '
336
338
+`${error}`,
@@ -343,6 +345,7 @@ function validateConfig(serverless, stateMachineName, stateMachineObj, notificat
0 commit comments