Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

GWT/Logging

GWTのロギング

System.out.prinln

System.out.printlnでもロギングは可能。ただし、開発中のみらしい。

System.out.println("Hello, World");

GWT.log

development shell loggerに出力されるとあるが、どこのことなのか不明。 GWT 2.0以前の環境のことを指しているのかもしれない。 ともあれ、レベルの指定も対象の指定も出きないので、出力できたとしても使いものにならない。

import com.google.gwt.core.client.GWT;
...
GWT.log("message");

java.util.loggingパッケージ

GWT 2.1からjava.util.logging互換機能が提供されているとのこと。参考は以下