I don't see it in the instructions and I'm not reading 85 pages.

But if you want it to show on the who's online page.
Open "includes/functions_online.php":
find
PHP Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
add below
PHP Code:
case 'journal':
$userinfo['action'] = 'Viewing Journal';
$userinfo['where'] = "<a href=\"$userinfo[location]\" title=\"Journal\">Journal</a>";
break;
find
PHP Code:
case 'archive':
$userinfo['activity'] = 'archive';
break;
below add
PHP Code:
case 'journal.php':
$userinfo['activity'] = 'journal';
break;