output name in list()

This commit is contained in:
Doug MacEachern 2006-06-19 17:51:20 +00:00
parent 2f70f23fcd
commit 7b588db6e4
1 changed files with 1 additions and 0 deletions

View File

@ -322,6 +322,7 @@ public class Service extends Win32 {
public void list(PrintStream out) throws Win32Exception {
ServiceConfig config = getConfig();
out.println("name..........[" + config.getName() + "]");
out.println("display.......[" + config.getDisplayName() + "]");
out.println("description...[" + config.getDescription() + "]");
out.println("status........[" + getStatusString() + "]");