• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Logging problem and grammatical problems

 
Ranch Hand
Posts: 664
Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm toying around with a Poker game, and, I have three problems...
1. Output from Apache log4j, is being returned multiple times rather than once. Also somehow I can't find a way of getting Eclipse 3.6.2 to read from log4j.properties.



2. I can't find a way to have the Player.toString() method loop through ArrayList Player.CardSheld, and, validate whether the counter variable has reached its size, so I was thinking in terms of...





Somehow I am suspecting that the above for loop is the reason for my Logger variable _log creating the first issue, however I can't figure out how, and, how to go about it.

Output


So far I have tested that all the deck of 52 cards has been distributed to the 5 players so that no player has the same card and that players get different cards, and, this is expected. The random shuffling is fine as well.

Log4j.properties


 
author
Posts: 23959
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jon Camilleri wrote:
Somehow I am suspecting that the above for loop is the reason for my Logger variable _log creating the first issue, however I can't figure out how, and, how to go about it.



That's what the logger is for -- to give you visibility into your application. If you are suspecting something, confirm it by adding logging statements that will either prove or disprove your suspicions.

Henry
 
Jon Camilleri
Ranch Hand
Posts: 664
Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Henry Wong wrote:

Jon Camilleri wrote:
Somehow I am suspecting that the above for loop is the reason for my Logger variable _log creating the first issue, however I can't figure out how, and, how to go about it.



That's what the logger is for -- to give you visibility into your application. If you are suspecting something, confirm it by adding logging statements that will either prove or disprove your suspicions.

Henry



It's basically to test Apache Log 4j and how I can use it while developing a program.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic