src/share/vm/utilities/events.cpp

changeset 6782
f73af4455d7d
parent 6763
0297e36d24a1
parent 6680
78bbf4d43a14
child 6876
710a3c8b516e
child 8720
6bed084fd02f
equal deleted inserted replaced
6781:da65bbf6f89e 6782:f73af4455d7d
80 if (LogEvents) { 80 if (LogEvents) {
81 va_list ap; 81 va_list ap;
82 va_start(ap, format); 82 va_start(ap, format);
83 // Save a copy of begin message and log it. 83 // Save a copy of begin message and log it.
84 _buffer.printv(format, ap); 84 _buffer.printv(format, ap);
85 Events::log(NULL, "%s", (const char*)_buffer); 85 Events::log(NULL, "%s", _buffer.buffer());
86 va_end(ap); 86 va_end(ap);
87 } 87 }
88 } 88 }
89 89
90 EventMark::~EventMark() { 90 EventMark::~EventMark() {
91 if (LogEvents) { 91 if (LogEvents) {
92 // Append " done" to the begin message and log it 92 // Append " done" to the begin message and log it
93 _buffer.append(" done"); 93 _buffer.append(" done");
94 Events::log(NULL, "%s", (const char*)_buffer); 94 Events::log(NULL, "%s", _buffer.buffer());
95 } 95 }
96 } 96 }

mercurial