WordPress 4.5 - built in theme logo support

and to show a default logo:

add_filter('get_custom_logo',function($html){
   if(empty($html)){ $html = '<img src="my default logo here">'; }
   return $html;
});