~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/srv/srv0start.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 00:26:12 UTC
  • mfrom: (2187.2.3 drizzle-build)
  • Revision ID: brian@tangent.org-20110222002612-5vxuzntgmcog0qq6
Merge: This cleans up the the error message system by providing for the ability to

Show diffs side-by-side

added added

removed removed

Lines of Context:
1063
1063
 
1064
1064
        if (UNIV_LIKELY(srv_use_sys_malloc))
1065
1065
        {
1066
 
          drizzled::errmsg_printf(drizzled::error::ERROR, _("InnoDB: The InnoDB memory heap is disabled\n"));
 
1066
          drizzled::errmsg_printf(drizzled::error::INFO, _("InnoDB: The InnoDB memory heap is disabled\n"));
1067
1067
        }
1068
1068
 
1069
 
        fputs("InnoDB: " IB_ATOMICS_STARTUP_MSG
 
1069
        drizzled::errmsg_printf(drizzled::error::INFO, "InnoDB: " IB_ATOMICS_STARTUP_MSG
1070
1070
                "\nInnoDB: Compressed tables use zlib " ZLIB_VERSION
1071
1071
#ifdef UNIV_ZIP_DEBUG
1072
1072
              " with validation"
1074
1074
#ifdef UNIV_ZIP_COPY
1075
1075
              " and extra copying"
1076
1076
#endif /* UNIV_ZIP_COPY */
1077
 
              "\n" , stderr);
 
1077
              " ");
1078
1078
 
1079
1079
 
1080
1080
        /* Since InnoDB does not currently clean up all its internal data
1760
1760
        os_fast_mutex_free(&srv_os_test_mutex);
1761
1761
 
1762
1762
        if (srv_print_verbose_log) {
1763
 
                drizzled::errmsg_printf(drizzled::error::ERROR,
 
1763
                drizzled::errmsg_printf(drizzled::error::INFO,
1764
1764
                                        "InnoDB %s started; log sequence number %"PRIu64"\n",
1765
1765
                                        INNODB_VERSION_STR, srv_start_lsn);
1766
1766
        }