How to Hide the "Login Log" Admin Menu

function plt_hide_crazy_bone_menus() {
	//Hide the "Users → Login Log" menu.
	remove_submenu_page('users.php', 'crazy-bone/plugin.php');
}

add_action('admin_menu', 'plt_hide_crazy_bone_menus', 11);

Where do I put this code?