~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/module.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 01:32:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226013211-c1tx52h7evovmijg
fixed dict and eval.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
{
93
93
  context("ident",
94
94
          po::value<string>()->default_value("drizzled"),
95
 
          _("Syslog Ident"));
 
95
          N_("Syslog Ident"));
96
96
  context("facility",
97
97
          po::value<string>()->default_value("local0"),
98
 
          _("Syslog Facility"));
 
98
          N_("Syslog Facility"));
99
99
  context("logging-enable",
100
100
          po::value<bool>(&sysvar_logging_enable)->default_value(false)->zero_tokens(),
101
 
          _("Enable logging to syslog of the query log"));
 
101
          N_("Enable logging to syslog of the query log"));
102
102
  context("logging-priority",
103
103
          po::value<string>()->default_value("warning"),
104
 
          _("Syslog Priority of query logging"));
 
104
          N_("Syslog Priority of query logging"));
105
105
  context("logging-threshold-slow",
106
106
          po::value<uint64_constraint>(&sysvar_logging_threshold_slow)->default_value(0),
107
 
          _("Threshold for logging slow queries, in microseconds"));
 
107
          N_("Threshold for logging slow queries, in microseconds"));
108
108
  context("logging-threshold-big-resultset",
109
109
          po::value<uint64_constraint>(&sysvar_logging_threshold_big_resultset)->default_value(0),
110
 
          _("Threshold for logging big queries, for rows returned"));
 
110
          N_("Threshold for logging big queries, for rows returned"));
111
111
  context("logging-threshold-big-examined",
112
112
          po::value<uint64_constraint>(&sysvar_logging_threshold_big_examined)->default_value(0),
113
 
          _("Threshold for logging big queries, for rows examined"));
 
113
          N_("Threshold for logging big queries, for rows examined"));
114
114
  context("errmsg-enable",
115
115
          po::value<bool>(&sysvar_errmsg_enable)->default_value(false)->zero_tokens(),
116
 
          _("Enable logging to syslog of the error messages"));
 
116
          N_("Enable logging to syslog of the error messages"));
117
117
  context("errmsg-priority",
118
118
          po::value<string>()->default_value("warning"),
119
 
          _("Syslog Priority of error messages"));
 
119
          N_("Syslog Priority of error messages"));
120
120
}
121
121
 
122
122
} /* namespace drizzle_plugin */