Browse Source

Property files

Tankernn 8 years ago
parent
commit
57cd14ee0a
5 changed files with 24 additions and 1 deletions
  1. 0 1
      .gitignore
  2. 5 0
      client.properties
  3. 4 0
      server.properties
  4. 13 0
      src/main/resources/logger.properties
  5. 2 0
      src/main/resources/server.properties

+ 0 - 1
.gitignore

@@ -5,7 +5,6 @@
 bin/
 logs/
 *.class
-*.properties
 *.log
 
 # Mobile Tools for Java (J2ME)

+ 5 - 0
client.properties

@@ -0,0 +1,5 @@
+#Configuration for chat client
+#Wed Feb 01 09:51:51 CET 2017
+port=25566
+host=localhost
+username=Frans23

+ 4 - 0
server.properties

@@ -0,0 +1,4 @@
+#ChatServer config file
+#Wed Feb 01 10:06:21 CET 2017
+maxUsers=20
+port=25566

+ 13 - 0
src/main/resources/logger.properties

@@ -0,0 +1,13 @@
+# Logging
+handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+.level = ALL
+
+# File Logging
+java.util.logging.FileHandler.pattern = %h/chatServer.log
+java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
+java.util.logging.FileHandler.level = INFO
+
+# Console Logging
+java.util.logging.ConsoleHandler.level = FINER
+
+java.util.logging.SimpleFormatter.format = %1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %5$s %6$s %n

+ 2 - 0
src/main/resources/server.properties

@@ -0,0 +1,2 @@
+port=25566
+maxUsers=20