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

« back to all changes in this revision

Viewing changes to libecasound/eca-logger.h

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2009-05-06 15:18:46 UTC
  • mfrom: (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090506151846-dvp8mirqmxwhve66
Tags: 2.6.0-1
* New upstream release
- 08_fix_header_install: remove
- 07_configure_in_maintainer_mode: update
- do not install manpage copies, and just install symlinks for
  ecatools.1
* Build-Depend on texlive-latex-recommended too for ecrm1000 font.
  (closes: #526535)

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        do { ECA_LOGGER::instance().msg(x, __FILE__, y); } while(0)
132
132
 
133
133
/**
 
134
 * Issue a log message, but do not print out the module prefix.
 
135
 * A variant of ECA_LOG_MSG().
 
136
 */
 
137
#define ECA_LOG_MSG_NOPREFIX(x,y) \
 
138
        do { ECA_LOGGER::instance().msg(x, std::string(), y); } while(0)
 
139
 
 
140
/**
134
141
 * To make ECA_LOG_MSG work we need to include the 
135
142
 * public interface ECA_LOGGER_INTERFACE.
136
143
 */