~serge-hallyn/ubuntu/quantal/lxc/lxc-fixapi

« back to all changes in this revision

Viewing changes to src/lxc/log.c

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-07-07 13:53:52 UTC
  • mfrom: (1.2.7 upstream)
  • mto: (3.1.15 sid)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20110707135352-2e27007vciicu4gf
Tags: upstream-0.7.4.2
ImportĀ upstreamĀ versionĀ 0.7.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
struct lxc_log_category lxc_log_category_lxc = {
112
112
        .name           = "lxc",
113
113
        .priority       = LXC_LOG_PRIORITY_ERROR,
114
 
        .appender       = &log_appender_logfile,
 
114
        .appender       = &log_appender_stderr,
115
115
        .parent         = &log_root
116
116
};
117
117
 
163
163
        }
164
164
 
165
165
        lxc_log_category_lxc.priority = lxc_priority;
 
166
        lxc_log_category_lxc.appender = &log_appender_logfile;
166
167
 
167
168
        if (!quiet)
168
169
                lxc_log_category_lxc.appender->next = &log_appender_stderr;