autoship_before_autoship_admin_logs (action)

(src/templates/admin/logs.php) Allows developers the ability to add custom content before the "Logs" tab content.

Example

function add_to_logger_content(){
	  echo '<h2>Hello World</h2>';
  }
  add_action('autoship_before_autoship_admin_logs', 'add_to_logger_content', 10, 1);