< prev index next >

src/share/vm/logging/logStream.cpp

Print this page
rev 13106 : imported patch 8181917-refactor-ul-logstream-alt1-api-changes


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "logging/log.hpp"
  27 #include "logging/logStream.inline.hpp"
  28 
  29 // Create a log stream without an embedded ResourceMark.
  30 // The function is placed here to be called out-of-line in log.hpp.
  31 outputStream* create_log_stream(LogLevelType level, LogTagSet* tagset) {
  32   return new LogStreamNoResourceMark(level, tagset);






  33 }
  34 


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "logging/log.hpp"
  27 #include "logging/logStream.hpp"
  28 
  29 void LogStream::write(const char* s, size_t len) {
  30   if (len > 0 && s[len - 1] == '\n') {
  31     _current_line.write(s, len - 1);
  32     _current_line.write("\0", 1);
  33     _log_handle.print("%s", _current_line.base());
  34     _current_line.reset();
  35   } else {
  36     _current_line.write(s, len);
  37   }
  38   update_position(s, len);
  39 }
  40 
< prev index next >