public void Log(string tableName) { var table = this.GetTable(tableName); var authentication = this.CommandContext.GetAuthentication(this); var logs = table.Dispatcher.Invoke(() => table.GetLog(authentication)); LogProperties.Print(this.Out, logs); }
public void LogCategory(string categoryPath) { var category = this.GetCategory(categoryPath); var authentication = this.CommandContext.GetAuthentication(this); var logs = category.Dispatcher.Invoke(() => category.GetLog(authentication)); LogProperties.Print(this.Out, logs); }
public void Log(string dataBaseName) { var dataBase = this.GetDataBase(dataBaseName); var authentication = this.CommandContext.GetAuthentication(this); var logs = dataBase.Dispatcher.Invoke(() => dataBase.GetLog(authentication)); LogProperties.Print(this.Out, logs); }