diff --git a/server/src/routes/workflow.ts b/server/src/routes/workflow.ts index c44a5d79..0a3e87f8 100644 --- a/server/src/routes/workflow.ts +++ b/server/src/routes/workflow.ts @@ -9,3 +9,10 @@ import { readFile } from "../workflow-management/storage"; export const router = Router(); +/** + * Logs information about workflow API. + */ +router.all('/', (req, res, next) => { + logger.log('debug',`The workflow API was invoked: ${req.url}`) + next() // pass control to the next handler +})