package com.mycompany.myproject;

public class MyClass {
	/**
	 * Logger for this class
	 */
	private static final Logger logger = Logger.getLogger(CopyPasteMistake.class);

	public String modifyExample(String theString, int theInt) {
		logger.config("Boolean - start");  //start comment

		try {
			logger.config("Boolean - trying something stupid...");

			doSomethingVeryDangerous();
		} catch (OutOfCheeseError myexception) {
			logger.severe("Boolean - : exception: " + myexception);

			redoFromStart();
		}

		logger.config("Boolean - end"); //end comment
		return toString();
	}
}