~ubuntu-branches/ubuntu/quantal/ecasound2.2/quantal

« back to all changes in this revision

Viewing changes to libecasound/eca-logger.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-03-23 21:42:49 UTC
  • mfrom: (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080323214249-evlfv3y1o8q747la
Tags: 2.4.6.1-2
* Bug fix: "FTBFS with GCC 4.3: missing #includes", thanks to Martin
  Michlmayr (Closes: #454890).
- 13_gcc4: updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
pthread_mutex_t ECA_LOGGER::lock_rep = PTHREAD_MUTEX_INITIALIZER;
29
29
 
30
30
static const char *level_descs[] = {
31
 
  "ERROR", /* 0 */
32
 
  "INFO",
33
 
  "SUBSYSTEM",
34
 
  "MODULE",
35
 
  "OBJECTS",
36
 
  "SYSTEM",
 
31
  "ERROR   ", /* 0 */
 
32
  "INFO    ",
 
33
  "SUBSYST.",
 
34
  "MODULE  ",
 
35
  "OBJECTS ",
 
36
  "SYSTEM  ",
37
37
  "FUNCTION",
38
 
  "CONTINUOUS",
39
 
  "EIAM",
40
 
  "UNKNOWN" /* 9 */
 
38
  "CONTINU.",
 
39
  "EIAM    ",
 
40
  "UNKNOWN "  /* 9 */
41
41
};
42
42
 
43
43
ECA_LOGGER_INTERFACE& ECA_LOGGER::instance(void)