View difference between Paste ID: WqvURRW4 and PufSvQEE
SHOW: | | - or go back to the newest paste.
1-
func logTraffic_offEvent(
1+
func logSearch_areaEvent(
2
    sessionHash: String
3
    userId: String
4
    appMode: String
5
    filterApplied: String
6
) {
7-
        AppEvents.ParameterName("userId").rawValue: userId
7+
8
        AppEvents.ParameterName("sessionHash").rawValue: sessionHash,
9
        AppEvents.ParameterName("userId").rawValue: userId,
10-
    AppEvents.logEvent(.init("traffic_off"), parameters: parameters)
10+
        AppEvents.ParameterName("appMode").rawValue: appMode,
11
        AppEvents.ParameterName("filterApplied").rawValue: filterApplied
12
    ]
13
14
    AppEvents.logEvent(.init("search_area"), parameters: parameters)
15
}