Logging.cpp (648B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- 2 * vim: set ts=8 sts=2 et sw=2 tw=80: 3 * This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #include "vm/Logging.h" 8 9 // Initialize all LogModules to speak with the provided interface. 10 /* static */ bool js::LogModule::initializeAll( 11 const JS::LoggingInterface iface) { 12 #define INITIALIZE_MODULE(X) X##Module.initialize(iface); 13 14 FOR_EACH_JS_LOG_MODULE(INITIALIZE_MODULE) 15 16 #undef INITIALIZE_MODULE 17 18 return true; 19 }