Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
marketing
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dingjy
marketing
Commits
9329b9a7
Commit
9329b9a7
authored
Mar 27, 2024
by
宋新宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
短剧APP归因
parent
5d8bed09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
VideoAppBehavoirConsumer.java
...lwby/marketing/att/videoapp/VideoAppBehavoirConsumer.java
+5
-5
No files found.
src/main/java/com/lwby/marketing/att/videoapp/VideoAppBehavoirConsumer.java
View file @
9329b9a7
...
...
@@ -38,27 +38,27 @@ public class VideoAppBehavoirConsumer {
long
begin
=
System
.
currentTimeMillis
();
if
(
VIDEO_SYS_LOG
.
isInfoEnabled
())
{
VIDEO_SYS_LOG
.
info
(
"media.
active
.onMessage start ,size = {}"
,
datas
.
size
());
VIDEO_SYS_LOG
.
info
(
"media.
behavoir
.onMessage start ,size = {}"
,
datas
.
size
());
}
for
(
ConsumerRecord
<
String
,
String
>
data
:
datas
)
{
try
{
if
(
data
==
null
)
{
VIDEO_SYS_LOG
.
warn
(
"media.
active
.story.onMessage listen 消费数据为null"
);
VIDEO_SYS_LOG
.
warn
(
"media.
behavoir
.story.onMessage listen 消费数据为null"
);
return
;
}
VIDEO_SYS_LOG
.
info
(
"media.
active
.onMessage start, data={}"
,
data
==
null
?
null
:
data
.
value
());
VIDEO_SYS_LOG
.
info
(
"media.
behavoir
.onMessage start, data={}"
,
data
==
null
?
null
:
data
.
value
());
StoreUserUploadEventBO
event
=
JSON
.
parseObject
(
data
.
value
(),
StoreUserUploadEventBO
.
class
);
VIDEO_SYS_LOG
.
info
(
"media.
active
.topic={}, bookStoreEvent={}"
,
data
.
topic
(),
JSON
.
toJSONString
(
event
));
VIDEO_SYS_LOG
.
info
(
"media.
behavoir
.topic={}, bookStoreEvent={}"
,
data
.
topic
(),
JSON
.
toJSONString
(
event
));
NovelAction
action
=
new
NovelAction
(
event
.
getClientInfo
(),
data
.
value
(),
event
.
getUserUploadEvent
());
videoAppFlowExecutor
.
getExecutorByStory
().
execute
(
action
);
}
catch
(
Throwable
e
)
{
VIDEO_ERROR_LOG
.
info
(
"media.
active
.onMessage failed, data={}, costTime={} ms"
,
data
.
value
(),
VIDEO_ERROR_LOG
.
info
(
"media.
behavoir
.onMessage failed, data={}, costTime={} ms"
,
data
.
value
(),
System
.
currentTimeMillis
()
-
begin
,
e
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment