Index: src/bp-core/bp-core-functions.php
===================================================================
--- src/bp-core/bp-core-functions.php	(revision 10682)
+++ src/bp-core/bp-core-functions.php	(working copy)
@@ -2269,13 +2269,11 @@
  * @since 1.0.0
  */
 function bp_core_print_generation_time() {
-?>
-
-<!-- Generated in <?php timer_stop(1); ?> seconds. (<?php echo get_num_queries(); ?> q) -->
-
-	<?php
+	if ( WP_DEBUG ) {
+		echo '<!-- Generated in ' . timer_stop() . ' seconds. (' . get_num_queries() . ' q) -->';
+	}
 }
-add_action( 'wp_footer', 'bp_core_print_generation_time' );
+add_action( 'wp_footer', 'bp_core_print_generation_time', 99999 );
 
 /**
  * Remove "prev" and "next" relational links from <head> on BuddyPress pages.
