diff -urp ../drupal-7.x-dev/includes/install.core.inc ./includes/install.core.inc
--- ../drupal-7.x-dev/includes/install.core.inc	2011-01-03 10:48:11.000000000 -0500
+++ ./includes/install.core.inc	2011-02-14 08:50:47.785061000 -0500
@@ -1529,7 +1529,12 @@ function _install_module_batch($module, 
   // steps.
   module_enable(array($module), FALSE);
   $context['results'][] = $module;
-  $context['message'] = st('Installed %module module.', array('%module' => $module_name));
+  if ($module == drupal_get_profile()) {
+    $context['message'] = st('Installed %profile profile.', array('%profile' => $module_name));
+  }
+  else {
+    $context['message'] = st('Installed %module module.', array('%module' => $module_name));
+  }
 }
 
 /**
diff -urp ../drupal-7.x-dev/includes/module.inc ./includes/module.inc
--- ../drupal-7.x-dev/includes/module.inc	2011-02-04 14:34:38.000000000 -0500
+++ ./includes/module.inc	2011-02-14 12:55:17.125872000 -0500
@@ -446,7 +446,12 @@ function module_enable($module_list, $en
         module_invoke($module, 'install');
         // Record the fact that it was installed.
         $modules_installed[] = $module;
-        watchdog('system', '%module module installed.', array('%module' => $module), WATCHDOG_INFO);
+        if ($module == drupal_get_profile()) {
+          watchdog('system', '%profile profile installed.', array('%profile' => $module), WATCHDOG_INFO);
+        }
+        else {
+          watchdog('system', '%module module installed.', array('%module' => $module), WATCHDOG_INFO);
+        }
       }
 
       // Enable the module.
@@ -454,7 +459,12 @@ function module_enable($module_list, $en
 
       // Record the fact that it was enabled.
       $modules_enabled[] = $module;
-      watchdog('system', '%module module enabled.', array('%module' => $module), WATCHDOG_INFO);
+      if ($module == drupal_get_profile()) {
+        watchdog('system', '%profile profile enabled.', array('%profile' => $module), WATCHDOG_INFO);
+      }
+      else {
+        watchdog('system', '%module module enabled.', array('%module' => $module), WATCHDOG_INFO);
+      }
     }
   }
 
