Skip to content

Commit 4385afa

Browse files
committed
lmendoza/jun-2025-multiple-changes
1 parent 4c973d8 commit 4385afa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/core/observability-events/observability-events.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class CustomEventService {
3030

3131
if (runtimeEnvironment.debugger) {
3232
console.debug(
33-
`-> Journey "${journeyType}" started at ${this.journeys[journeyType].startTime}`,
33+
`[RUM][journey:${journeyType}] : start`,
3434
attributes
3535
)
3636
}
@@ -69,7 +69,7 @@ export class CustomEventService {
6969

7070
if (runtimeEnvironment.debugger) {
7171
console.debug(
72-
`-> Event "${eventName}" recorded for journey "${journeyType}" with elapsed time ${elapsedTime}ms`,
72+
`[RUM][journey:${journeyType}] : event ${eventName}`,
7373
eventAttributes
7474
)
7575
}
@@ -109,7 +109,7 @@ export class CustomEventService {
109109
delete this.journeys[journeyType]
110110

111111
console.debug(
112-
`Journey "${journeyType}" finished with elapsed time ${elapsedTime}ms`,
112+
`[RUM][journey:${journeyType}] : finished`,
113113
finalAttributes
114114
)
115115
}

0 commit comments

Comments
 (0)