File tree Expand file tree Collapse file tree
hugegraph-server/hugegraph-api/src/main/java/org/apache/hugegraph/api/auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929import org .apache .hugegraph .auth .HugePermission ;
3030import org .apache .hugegraph .core .GraphManager ;
3131import org .apache .hugegraph .define .Checkable ;
32- import org .apache .hugegraph .server .RestServer ;
3332import org .apache .hugegraph .util .E ;
3433import org .apache .hugegraph .util .Log ;
3534import org .slf4j .Logger ;
5554@ Tag (name = "ManagerAPI" )
5655public class ManagerAPI extends API {
5756
58- private static final Logger LOG = Log .logger (RestServer .class );
57+ private static final Logger LOG = Log .logger (ManagerAPI .class );
5958
6059 @ POST
6160 @ Timed
Original file line number Diff line number Diff line change @@ -173,6 +173,17 @@ public HugeTarget build() {
173173 return target ;
174174 }
175175
176+ @ Override
177+ public String toString () {
178+ return "JsonTarget{" +
179+ "name='" + name + '\'' +
180+ ", graph='" + graph + '\'' +
181+ ", url='" + url + '\'' +
182+ ", resources=" + resources +
183+ '}' ;
184+ }
185+
186+
176187 @ Override
177188 public void checkCreate (boolean isBatch ) {
178189 E .checkArgumentNotNull (this .name ,
You can’t perform that action at this time.
0 commit comments