How to Hide Debug Log List Admin Menus

function plt_hide_debug_log_list_menus() {
	//Hide the "Log" menu.
	remove_menu_page('hybridsupply-log');
}

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

Where do I put this code?