solved Activity log server still not show log entry details.

alt=
DannyA
@dannya
9 years ago
584 posts
FYI, the update you made the other day to the cloud log module did not work. We still cannot see button to see details of log entry.
updated by @dannya: 11/03/15 10:52:20PM
brian
@brian
9 years ago
10,148 posts
DannyA:
FYI, the update you made the other day to the cloud log module did not work. We still cannot see button to see details of log entry.

Hmm - I tested here locally and didn't see any issues, but will test it on my dev cloud system.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
DannyA
@dannya
9 years ago
584 posts
It looks like its popping up on some entries now. It's mostly our custom modules that are not passing any debug info.

Has do you add debug info into an activity log entry? It would be useful to pass error messages from ffmpeg on failed conversions.
updated by @dannya: 10/02/15 12:10:31PM
brian
@brian
9 years ago
10,148 posts
It's the (optional) 3rd parameter to jrCore_logger - i.e.

$_array = array(
   'key1' => 'value1',
   'key2' => 'value2'
);
jrCore_logger('INF', 'This is the activity log message', $_array);

ANY value is valid for the 3rd parameter and it will be shown as the "debug".

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
DannyA
@dannya
9 years ago
584 posts
Awesome. Thanks!

Tags