Skip to content

Commit

Permalink
feat: l2-bridge-arb iterate over l1
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyWh1te committed Jul 15, 2024
2 parents 1e6fab0 + 9ec997b commit 77c808d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l2-bridge-arbitrum/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const main = async () => {

const logger: Winston.Logger = Winston.createLogger({
format: config.logFormat === 'simple' ? Winston.format.simple() : Winston.format.json(),
transports: [new Winston.transports.Console()],
transports: [new Winston.transports.Console(), new Winston.transports.File({ filename: 'combined.log' })],
})

const defaultRegistry = promClient
Expand Down
2 changes: 1 addition & 1 deletion l2-bridge-arbitrum/src/utils/time.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const SECONDS_60 = 60
export const SECONDS_768 = 768
export const SECONDS_768 = 120

export function formatTime(timeInMillis: number): string {
const seconds = (timeInMillis / 1000).toFixed(3)
Expand Down

0 comments on commit 77c808d

Please sign in to comment.