Skip to content

Commit

Permalink
fix: serverless started key word (#44)
Browse files Browse the repository at this point in the history
Signed-off-by: chrismaree <[email protected]>
  • Loading branch information
chrismaree authored May 12, 2022
1 parent 796362a commit ba19d34
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dataworker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function runDataworker(_logger: winston.Logger): Promise<void> {
logger = _logger;
try {
const config = new DataworkerConfig(process.env);
logger[startupLogLevel(config)]({ at: "Dataworker#index", message: "Dataworker startingπŸ‘©β€πŸ”¬", config });
logger[startupLogLevel(config)]({ at: "Dataworker#index", message: "Dataworker started πŸ‘©β€πŸ”¬", config });

const clients = await constructDataworkerClients(logger, config);

Expand Down
2 changes: 1 addition & 1 deletion src/monitor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function runMonitor(_logger: winston.Logger) {
logger = _logger;
try {
const config = new MonitorConfig(process.env);
logger[startupLogLevel(config)]({ at: "AcrossMonitor#index", message: "AcrossMonitor started πŸ”­", config });
logger[startupLogLevel(config)]({ at: "AcrossMonitor#index", message: "Monitor started πŸ”­", config });

const clients = constructMonitorClients(config, logger);
const acrossMonitor = new Monitor(logger, config, clients);
Expand Down
2 changes: 1 addition & 1 deletion src/relayer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function runRelayer(_logger: winston.Logger): Promise<void> {
logger = _logger;
try {
const config = new RelayerConfig(process.env);
logger[startupLogLevel(config)]({ at: "Relayer#index", message: "Relayer startingπŸƒβ€β™‚οΈ", config });
logger[startupLogLevel(config)]({ at: "Relayer#index", message: "Relayer started πŸƒβ€β™‚οΈ", config });

const relayerClients = await constructRelayerClients(logger, config);

Expand Down

0 comments on commit ba19d34

Please sign in to comment.