We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e7aa3a commit 8e595a7Copy full SHA for 8e595a7
1 file changed
gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/testing/LocalGcdHelper.java
@@ -239,7 +239,6 @@ private static class ProcessErrorStreamReader extends Thread {
239
240
void terminate() throws IOException {
241
terminated = true;
242
- writeLog(currentLogLevel, currentLog);
243
errorReader.close();
244
}
245
@@ -253,14 +252,14 @@ public void run() {
253
252
nextLine = errorReader.readLine();
254
if (nextLine == null) {
255
256
257
} else {
258
processLogLine(previousLine, nextLine);
259
260
} catch (IOException e) {
261
// ignore
262
263
+ writeLog(currentLogLevel, currentLog);
264
265
266
private void processLogLine(String previousLine, String nextLine) {
0 commit comments