Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/java/org/jvnet/winp/WinProcess.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ public WinProcess(Process proc) {

@Override
public String toString() {
return "WinProcess pid#" + pid + ", command line: " + (commandline != null ? commandline : "not ready");
return String.format("WinProcess pid# %d", pid);
}

public String toStringDetailed() {
return String.format("%s - command line: %s", toString(), getCommandLine());
}

/**
Expand Down
Loading